pvv-nixos-config/users/felixalb.nix

9 lines
163 B
Nix
Raw Normal View History

2022-09-08 17:44:20 +02:00
{ pkgs, ... }:
{
users.users.felixalb = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.zsh;
};
}