33 lines
675 B
Nix
33 lines
675 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (config.local.systemVars) username;
|
|
in {
|
|
config = lib.mkIf (!config.local.profiles.server.enable) {
|
|
users.users.${config.local.systemVars.username} = {
|
|
isNormalUser = true;
|
|
description = config.local.homeVars.fullName or "User";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"audio"
|
|
"video"
|
|
"wheel"
|
|
"plugdev"
|
|
];
|
|
};
|
|
|
|
hjem = {
|
|
clobberByDefault = true;
|
|
users.${username} = {
|
|
enable = true;
|
|
directory = "/home/${username}";
|
|
user = "${username}";
|
|
environment = {
|
|
forceOverride = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|