diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 589a263..415fc95 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -7,6 +7,7 @@ ../../modules/home-manager/hyprland.nix ../../modules/home-manager/pass.nix ../../modules/home-manager/btop.nix + ../../modules/home-manager/dunst.nix ../../modules/home-manager/blueman.nix ../../modules/home-manager/git.nix ../../modules/home-manager/wofi.nix diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix index 29ee053..5020db6 100644 --- a/modules/home-manager/dunst.nix +++ b/modules/home-manager/dunst.nix @@ -3,7 +3,18 @@ enable = true; settings = { global = { - frame_color = "#ffebdbb2"; + frame_color = "#ebdbb2"; + background = "#282828"; + foreground = "#ebdbb2"; + offset = "30x30"; + corner_radius = 10; + icon_corner_radius = 5; + gap_size = 5; + font = "JetBrainsMono Nerd Font Mono 10"; + }; + + urgency_critical = { + frame_color = "#BF616A"; }; }; };