9 lines
216 B
Nix
9 lines
216 B
Nix
# Generic user configuration.
|
||
# Don't forget to set a password with ‘passwd’.
|
||
{
|
||
isNormalUser = true;
|
||
useDefaultShell = true;
|
||
description = "random";
|
||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||
}
|