9 lines
239 B
Nix
9 lines
239 B
Nix
{
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.ficache = {
|
||
isNormalUser = true;
|
||
description = "ficache";
|
||
extraGroups = [ "networkmanager" "wheel" "tpws" ];
|
||
};
|
||
}
|