re-organize home-modules
This commit is contained in:
19
modules/home/dunst/config.nix
Normal file
19
modules/home/dunst/config.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{config, ...}: {
|
||||
services.dunst.settings = {
|
||||
global = {
|
||||
origin = "top-right";
|
||||
frame_color = "#33ccff";
|
||||
transparency = 20;
|
||||
background = "#000000";
|
||||
timeout = 5;
|
||||
offset = "20x50";
|
||||
force_xwayland = true;
|
||||
corner_radius = 15;
|
||||
};
|
||||
|
||||
urgency_critical = {
|
||||
timeout = 15;
|
||||
background = "#500005";
|
||||
};
|
||||
};
|
||||
}
|
||||
6
modules/home/dunst/default.nix
Normal file
6
modules/home/dunst/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{...}: {
|
||||
imports = [
|
||||
./config.nix
|
||||
./dunst.nix
|
||||
];
|
||||
}
|
||||
3
modules/home/dunst/dunst.nix
Normal file
3
modules/home/dunst/dunst.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{...}: {
|
||||
services.dunst.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user