1
0
forked from extern/nix-config
donovanglover-nix-config/modules/user.nix
2023-06-22 10:42:23 -04:00

13 lines
237 B
Nix

{ config, ... }: {
users = {
mutableUsers = false;
users."${config.variables.username}" = {
isNormalUser = true;
uid = 1000;
password = "user";
extraGroups = [ "wheel" "networkmanager" ];
};
};
}