various reorgs

This commit is contained in:
John Lancaster
2026-04-20 23:52:03 -05:00
parent 443020df4d
commit cf90d3e876
9 changed files with 74 additions and 79 deletions
+2 -1
View File
@@ -140,8 +140,9 @@
args = [
"home" "switch"
"--configuration" "${config.configuration}"
"$@"
"${config.flakeDir}"
] ++ config.extraOptions ++ [ "$@" ];
] ++ config.extraOptions;
};
});
}
+3
View File
@@ -14,8 +14,11 @@
inputs.home-manager.nixosModules.home-manager
];
users.groups."${username}" = {};
users.users."${username}" = {
isNormalUser = true;
group = username;
home = "/home/${username}";
shell = lib.mkIf config.programs.zsh.enable pkgs.zsh;
extraGroups = [ "input" "networkmanager" ]