aboutsummaryrefslogtreecommitdiff
path: root/nix/modules
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-01-16 02:52:03 -0800
committerPreston Pan <ret2pop@gmail.com>2025-01-16 02:52:03 -0800
commit00c8654a02716808dd8709d89bb14ddd1dae4870 (patch)
treede4168e5403be1da414548b88e61e93d3f9de724 /nix/modules
parent3e1007b1155447a244fea8a84be223cf774e262d (diff)
add sounds
Diffstat (limited to 'nix/modules')
-rw-r--r--nix/modules/home/mako.nix4
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
'';
};
}