mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
11 lines
286 B
Nix
11 lines
286 B
Nix
|
{
|
|||
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|||
|
users.users.foo-dogsquared = {
|
|||
|
isNormalUser = true;
|
|||
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
|||
|
};
|
|||
|
|
|||
|
home-manager.useUserPackages = true;
|
|||
|
home-manager.useGlobalPkgs = true;
|
|||
|
}
|