pvv-nixos-config/users/danio.nix

10 lines
159 B
Nix
Raw Normal View History

2021-12-18 22:04:28 +01:00
{pkgs, ...}:
{
users.users.danio = {
isNormalUser = true;
2022-04-02 01:52:13 +02:00
extraGroups = [ "drift" ]; # Enable sudo for the user.
2021-12-18 22:04:28 +01:00
shell = pkgs.zsh;
};
}