nixos-config/users/fleaz.nix

8 lines
160 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2022-01-25 00:31:56 +00:00
users.users.fleaz = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
2022-01-28 14:34:49 +00:00
shell = pkgs.zsh;
2022-01-25 00:31:56 +00:00
};
}