nixos-config/modules/core/user-linux.nix

23 lines
381 B
Nix
Raw Normal View History

{ username, ... }:
{
users.users.${username} = {
isNormalUser = true;
extraGroups = [
"networkmanager"
"wheel"
"docker"
"input"
"dialout"
"wheel"
];
initialPassword = "temporary-password";
};
2026-04-24 11:09:14 +02:00
#home-manager = {
# inherit username;
# homeDirectory = "/home/${username}";
#};
fonts.fontconfig.antialias = false;
}