From 00c8654a02716808dd8709d89bb14ddd1dae4870 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 16 Jan 2025 02:52:03 -0800 Subject: add sounds --- nix/modules/home/mako.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix/modules/home') 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 ''; }; } -- cgit