diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 59adfb2..7183a55 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -4,5 +4,6 @@ ./users/darian.nix ./users/carol.nix ./users/alan.nix + ./users/spandan.nix ]; } diff --git a/machines/kcnhub/users/spandan.nix b/machines/kcnhub/users/spandan.nix new file mode 100644 index 0000000..fc752ed --- /dev/null +++ b/machines/kcnhub/users/spandan.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.spandan = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + homeSize = "50g"; + homeProjectId = 104; + packages = with pkgs; [ + + ]; + }; +}