diff options
author | tdback <tyler@tdback.net> | 2024-12-21 15:32:13 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-21 15:32:13 -0500 |
commit | 0a5754541bb01e96021ca7ee74f1256a8ee68bc4 (patch) | |
tree | 2d0b8089e98239963a1e240cff676b1515fc8431 /users/tdback/modules/dunst/default.nix |
initial commit to self-hosted git
Diffstat (limited to 'users/tdback/modules/dunst/default.nix')
-rw-r--r-- | users/tdback/modules/dunst/default.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/users/tdback/modules/dunst/default.nix b/users/tdback/modules/dunst/default.nix new file mode 100644 index 0000000..132e32b --- /dev/null +++ b/users/tdback/modules/dunst/default.nix @@ -0,0 +1,30 @@ +{ pkgs, ... }: +{ + services.dunst = { + enable = true; + package = pkgs.dunst; + + settings = { + global = { + width = 300; + height = 300; + offset = "30x50"; + origin = "top-right"; + frame_color = "#2c363c"; + font = "Iosevka Comfy Motion Fixed 12"; + }; + + urgency_normal = { + background = "#37474f"; + foreground = "eceff1"; + timeout = 5; + }; + }; + + iconTheme = { + name = "Papirus-Dark"; + package = pkgs.papirus-icon-theme; + size = "16x16"; + }; + }; +} |