diff options
author | Adrian Kummerlaender | 2025-07-27 21:52:04 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2025-07-27 21:52:04 +0200 |
commit | dd8558457c5c614c4091f877d9b83cf7222f5c3c (patch) | |
tree | 866bd20e1be9ddfb319e4b97002837e9644fe1b7 /gui/dunst.nix | |
parent | e4142c9202ac39e0cd6cd59a54db5c702bfd1373 (diff) | |
download | nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.gz nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.bz2 nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.lz nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.xz nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.tar.zst nixos_home-dd8558457c5c614c4091f877d9b83cf7222f5c3c.zip |
desktop: Add dunst, setup xwaylandwayland
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"; + }; + }; + }; +} |