diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix new file mode 100644 index 0000000..63a857c --- /dev/null +++ b/modules/home-manager/dunst.nix @@ -0,0 +1,34 @@ +{ config, pkgs, lib, ... }: + +{ + services.dunst = { + enable = true; + iconTheme = pkgs.arc-icon-theme; + settings = { + global = { + width = 300; + height = 300; + offset = "top-right"; + transparency = 10; + frame_color = "#22bbff"; + font = "FiraCodeNerdFont"; + }; + + urgency_low = { + background = "#37474f"; + foreground = "#ecefff"; + timeout = 5; + }; + urgency_normal = { + background = "#37474f"; + foreground = "#ecefff"; + timeout = 5; + }; + urgency_high = { + background = "#cc474f"; + foreground = "#ecefff"; + timeout = 5; + }; + }; + }; +}