9 lines
235 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.
2025-01-27 15:38:40 +03:00
users.users.dixxe = {
2024-10-14 18:43:31 +03:00
isNormalUser = true;
2025-01-27 15:38:40 +03:00
description = "dixxe";
2024-11-10 18:20:35 +03:00
extraGroups = [ "networkmanager" "wheel" "tpws" ];
2024-10-14 18:43:31 +03:00
};
}