9 lines
239 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
{
# Define a user account. Don't forget to set a password with passwd.
users.users.ficache = {
isNormalUser = true;
description = "ficache";
2024-11-10 18:20:35 +03:00
extraGroups = [ "networkmanager" "wheel" "tpws" ];
2024-10-14 18:43:31 +03:00
};
}