diff options
Diffstat (limited to 'gui/dunst.nix')
-rw-r--r-- | gui/dunst.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gui/dunst.nix b/gui/dunst.nix new file mode 100644 index 0000000..a75b56d --- /dev/null +++ b/gui/dunst.nix @@ -0,0 +1,25 @@ +{ config, pkgs, ... }: + +{ + home.packages = with pkgs; [ + swaylock + libnotify + ]; + + services.dunst = { + enable = true; + settings = { + global = { + width = 300; + height = 50; + offset = "5x5"; + origin = "bottom-right"; + transparency = 10; + frame_color = "#909737"; + background = "#909737"; + foreground = "#111111"; + font = "Iosevka 11"; + }; + }; + }; +} |