diff --git a/nix/modules/users.nix b/nix/modules/users.nix new file mode 100644 index 0000000..3e4d60f --- /dev/null +++ b/nix/modules/users.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs }: + +{ + users.users.nico = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + shell = pkgs.zsh; + }; +}