From 67b5913c242276233471cd7ee983202c671b655f Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Thu, 5 Jun 2025 19:21:32 +0800 Subject: [PATCH] feat(homeModules/desktop): make default timeout for mako 10 seconds --- modules/home/desktop/notification-daemon/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/home/desktop/notification-daemon/default.nix b/modules/home/desktop/notification-daemon/default.nix index c6bb63f..bef691a 100644 --- a/modules/home/desktop/notification-daemon/default.nix +++ b/modules/home/desktop/notification-daemon/default.nix @@ -5,7 +5,9 @@ home.sessionVariables.NOTIFICATION_DAEMON = "mako"; services.mako = { enable = true; - settings = { }; + settings = { + default-timeout = 10000; + }; }; }) ];