diff --git a/profiles/workspace/simple-osd-daemons.nix b/profiles/workspace/simple-osd-daemons.nix index 3b1e567..24fa241 100644 --- a/profiles/workspace/simple-osd-daemons.nix +++ b/profiles/workspace/simple-osd-daemons.nix @@ -18,7 +18,11 @@ in { systemd.user.services = daemons [ "pulseaudio" "mpris" ] // pkgs.lib.optionalAttrs (config.deviceSpecific.isLaptop) (daemons [ "battery" "brightness" ]); - xdg.configFile."simple-osd/common".text = - genIni { progressbar.length = 25; }; + xdg.configFile = { + "simple-osd/common".text = + genIni { progressbar.length = 25; notification."default timeout" = 3; }; + "simple-osd/mpris".text = + genIni { default."notification display time" = 3; }; + }; }; }