From f797abf235f1330a6721fed23c43ec81b25a9bc7 Mon Sep 17 00:00:00 2001 From: Bun Date: Thu, 15 May 2025 00:39:39 -0400 Subject: [PATCH] Fix Librewolf profile id 0 causing errors --- hosts/detritus/user/default.nix | 1 + modules/home/programs/gui/librewolf/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hosts/detritus/user/default.nix b/hosts/detritus/user/default.nix index 7dc502d6..90368007 100644 --- a/hosts/detritus/user/default.nix +++ b/hosts/detritus/user/default.nix @@ -3,6 +3,7 @@ home-manager.users."${config.sysusers.main}" = { home = { desktop.enable = true; + gaming.enable = true; stateVersion = lib.mkForce config.system.stateVersion; }; diff --git a/modules/home/programs/gui/librewolf/default.nix b/modules/home/programs/gui/librewolf/default.nix index 67863716..00a3e612 100644 --- a/modules/home/programs/gui/librewolf/default.nix +++ b/modules/home/programs/gui/librewolf/default.nix @@ -12,12 +12,12 @@ home = { color = "purple"; icon = "fruit"; - id = 0; + id = 1; }; school = { color = "red"; icon = "briefcase"; - id = 1; + id = 2; }; };