nixos/users.nix

11 lines
208 B
Nix
Raw Normal View History

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