diff options
author | tdback <tyler@tdback.net> | 2025-01-23 21:22:42 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-23 21:22:42 -0500 |
commit | 9d9d84699bc1bce6aac253cb70e97c100d1e4c84 (patch) | |
tree | 5532fb719100b19d236197967c4364554e9dc6d5 /users/tdback/modules/retired/dunst | |
parent | ebd0ac7a3aa6c681b6317da24b72d64962913f79 (diff) |
Retired modules have migrated to separate repo
Diffstat (limited to 'users/tdback/modules/retired/dunst')
-rw-r--r-- | users/tdback/modules/retired/dunst/default.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/users/tdback/modules/retired/dunst/default.nix b/users/tdback/modules/retired/dunst/default.nix deleted file mode 100644 index 4b52def..0000000 --- a/users/tdback/modules/retired/dunst/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, ... }: -{ - services.dunst = { - enable = true; - package = pkgs.unstable.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"; - }; - }; -} |