Fix Librewolf profile id 0 causing errors

This commit is contained in:
Bun 2025-05-15 00:39:39 -04:00
parent 43e11222ad
commit f797abf235
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@
home-manager.users."${config.sysusers.main}" = { home-manager.users."${config.sysusers.main}" = {
home = { home = {
desktop.enable = true; desktop.enable = true;
gaming.enable = true;
stateVersion = lib.mkForce config.system.stateVersion; stateVersion = lib.mkForce config.system.stateVersion;
}; };

View file

@ -12,12 +12,12 @@
home = { home = {
color = "purple"; color = "purple";
icon = "fruit"; icon = "fruit";
id = 0; id = 1;
}; };
school = { school = {
color = "red"; color = "red";
icon = "briefcase"; icon = "briefcase";
id = 1; id = 2;
}; };
}; };