Reshuffling stuff

This commit is contained in:
2026-03-18 18:05:51 +00:00
parent b60f4f71a3
commit 55a866e051
15 changed files with 28 additions and 28 deletions
@@ -0,0 +1,23 @@
{
config,
pkgs,
lib,
inputs,
...
}:
let
user = import ./henrov.nix;
in
{
home-manager.users.${user.username} = {
home.stateVersion = "25.11";
home.username = user.username;
home.homeDirectory = user.homeDirectory;
};
# Ensure the user is in the necessary groups
users.users.${config.users.users.${user.username}.username} = {
extraGroups = [ "wheel" "networkmanager" ];
};
}