16 lines
246 B
Nix
16 lines
246 B
Nix
{
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
users = {
|
|
users = {
|
|
${myConfig.nixos.username} = {
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel" "networkmanager" "input" "video"];
|
|
useDefaultShell = true;
|
|
};
|
|
};
|
|
};
|
|
}
|