mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
23 lines
369 B
Nix
23 lines
369 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
userVars,
|
|
...
|
|
}:
|
|
|
|
{
|
|
users.users."${userVars.username}" = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
];
|
|
};
|
|
|
|
home-manager.users."${userVars.username}" = {
|
|
home.username = userVars.username;
|
|
home.homeDirectory = "/home/${userVars.username}";
|
|
home.stateVersion = "26.05";
|
|
};
|
|
}
|