diff --git a/home/services/dunst/default.nix b/home/services/dunst/default.nix index a3d61e9..a8b2f47 100644 --- a/home/services/dunst/default.nix +++ b/home/services/dunst/default.nix @@ -5,6 +5,19 @@ }: { services.dunst = { enable = true; - configFile = ./dunstrc; + # configFile = ./dunstrc; + settings = { + global = { + monitor = 0; + follow = "mouse"; + width = 300; + height = 300; + origin = "top-right"; + offset = "10x50"; + scale = 0; + notification_limit = 0; + progress_bar = true; + }; + }; }; }