From 9a40475f4a65e265cc3d506c4058f454047a8520 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Fri, 4 Apr 2025 00:23:03 -0700 Subject: [PATCH] Fix: wsIconMap is null issue. (#884) --- nix/module.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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;