diff --git a/users/danio.nix b/users/danio.nix new file mode 100644 index 0000000..93b41ca --- /dev/null +++ b/users/danio.nix @@ -0,0 +1,9 @@ +{pkgs, ...}: + +{ + users.users.danio = { + isNormalUser = true; + #extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + shell = pkgs.zsh; + }; +}