diff options
Diffstat (limited to 'nix/modules/home')
-rw-r--r-- | nix/modules/home/mako.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/modules/home/mako.nix b/nix/modules/home/mako.nix index 2a93508..eb70eee 100644 --- a/nix/modules/home/mako.nix +++ b/nix/modules/home/mako.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, config, sounds, ... }: { services.mako = { enable = true; @@ -9,7 +9,7 @@ font = "Fira Code 10"; defaultTimeout = 3000; extraConfig = '' -on-notify=exec mpv /home/${config.monorepo.vars.userName}/sounds/notification.wav --no-config --no-video +on-notify=exec mpv ${sounds}/polite.ogg --no-config --no-video ''; }; } |