aboutsummaryrefslogtreecommitdiff
path: root/users/tdback/modules/dunst/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/tdback/modules/dunst/default.nix')
-rw-r--r--users/tdback/modules/dunst/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/users/tdback/modules/dunst/default.nix b/users/tdback/modules/dunst/default.nix
deleted file mode 100644
index 4b52def..0000000
--- a/users/tdback/modules/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";
- };
- };
-}