diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-16 02:52:03 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-16 02:52:03 -0800 |
commit | 00c8654a02716808dd8709d89bb14ddd1dae4870 (patch) | |
tree | de4168e5403be1da414548b88e61e93d3f9de724 /nix/modules/home | |
parent | 3e1007b1155447a244fea8a84be223cf774e262d (diff) |
add sounds
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 ''; }; } |