nixos/users.nix

10 lines
168 B
Nix
Raw Normal View History

2021-07-01 01:02:55 +01:00
{config, pkgs, ...}:
{
users.users.giulio = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
};
}