pvv-nixos-config/users/oysteikt.nix

10 lines
163 B
Nix
Raw Normal View History

2021-12-15 18:14:48 +01:00
{pkgs, ...}:
{
users.users.oysteikt = {
isNormalUser = true;
#extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.zsh;
};
}