re-organize home-modules

This commit is contained in:
2024-10-19 14:35:08 +02:00
parent f1d7b850fa
commit b95ebd8efc
52 changed files with 36 additions and 30 deletions

View 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";
};
};
}

View File

@@ -0,0 +1,6 @@
{...}: {
imports = [
./config.nix
./dunst.nix
];
}

View File

@@ -0,0 +1,3 @@
{...}: {
services.dunst.enable = true;
}