File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments