Skip to content

Commit 9144930

Browse files
chore: update crush schema options
1 parent 8e85008 commit 9144930

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

modules/crush/options/settings.nix

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ lib.mkOption {
321321
disable_notifications = lib.mkOption {
322322
type = lib.types.nullOr lib.types.bool;
323323
default = false;
324-
description = "Disable desktop notifications";
324+
description = "Deprecated: Use notification_style instead. Disable desktop notifications";
325325
};
326326

327327
disable_provider_auto_update = lib.mkOption {
@@ -348,6 +348,20 @@ lib.mkOption {
348348
description = "Name of the context file to create/update during project initialization";
349349
};
350350

351+
notification_style = lib.mkOption {
352+
type = lib.types.nullOr (
353+
lib.types.enum [
354+
"auto"
355+
"native"
356+
"osc"
357+
"bell"
358+
"disabled"
359+
]
360+
);
361+
default = "auto";
362+
description = "Notification style to use. Options: auto (default)";
363+
};
364+
351365
progress = lib.mkOption {
352366
type = lib.types.nullOr lib.types.bool;
353367
default = true;

0 commit comments

Comments
 (0)