{ userConfig, pkgs, ... }: { services.mako = { enable = true; settings = { max-history = 15; default-timeout = 5000; anchor = "top-right"; max-visible = 5; width = 320; height = 300; margin = "25,25,10,10"; padding = 10; font = "Cousine Nerd Font mono"; border-radius = 15; background-color = "#1e1e2e"; text-color = "#cdd6f4"; border-color = "#89b4fa"; progress-color = "over #313244"; output = "DP-1"; on-notify = if userConfig.isNixOS then "exec ${pkgs.pulseaudio}/bin/paplay ${pkgs.sound-theme-freedesktop}/share/sounds/freedesktop/stereo/dialog-information.oga" else "exec paplay /usr/share/sounds/freedesktop/stereo/dialog-information.oga"; }; extraConfig = '' [urgency=high] border-color=#fe640b [urgency=low] border-color=#FF6347 [urgency=critical] on-notify=${ if userConfig.isNixOS then "exec ${pkgs.pulseaudio}/bin/paplay ${pkgs.sound-theme-freedesktop}/share/sounds/freedesktop/stereo/dialog-information.oga" else "exec paplay /usr/share/sounds/freedesktop/stereo/dialog-information.oga" } border-color=#FF0000 [mode=do-not-disturb] invisible=1 on-notify=none [app-name=wp-vol] layer=overlay history=0 anchor=center group-by=app-name format=%s\n%b ''; }; }