diff --git a/nix/module.nix b/nix/module.nix index 48182a7..3b25044 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -94,7 +94,7 @@ in settings = { layout = mkOption { type = jsonFormat.type; - default = null; + default = { }; example = '' { "bar.layouts" = { @@ -359,15 +359,17 @@ in bar.workspaces.workspaces = mkIntOption 5; bar.workspaces.workspaceIconMap = mkOption { type = jsonFormat.type; - default = null; + default = { }; example = '' + { "1": "", "2": "", "3": "", "4": "", "5": "", "6": " ", - "7": "" + "7": "" + } ''; }; dummy = mkBoolOption true;