From 50faa146214c8a52cd69b295d583aadaf0b94111 Mon Sep 17 00:00:00 2001 From: Piyush Kumbhare <130249145+piyushkumbhare@users.noreply.github.com> Date: Fri, 14 Mar 2025 08:52:41 -0700 Subject: [PATCH] created notifications.ignore string list option (#831) * created notifications.ignore string list option * reverted auto-formatting --- nix/module.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/module.nix b/nix/module.nix index 85dd38a..73f3702 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -441,6 +441,7 @@ in notifications.monitor = mkIntOption 0; notifications.position = mkStrOption "top right"; notifications.showActionsOnHover = mkBoolOption false; + notifications.ignore = mkStrListOption []; notifications.timeout = mkIntOption 7000; scalingPriority = mkStrOption "gdk"; tear = mkBoolOption false;