diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 3e1b102..de8a085 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -6,5 +6,6 @@ ./users/alan.nix ./users/spandan.nix ./users/matlab-server.nix + ./users/frances.nix ]; } diff --git a/machines/kcnhub/users/frances.nix b/machines/kcnhub/users/frances.nix new file mode 100644 index 0000000..af67543 --- /dev/null +++ b/machines/kcnhub/users/frances.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: { + users.users.frances = { + isNormalUser = true; + extraGroups = [ + "wheel" + "mousetbi" + ]; + homeSize = "50g"; + homeProjectId = 106; + packages = with pkgs; [ + + ]; + initialHashedPassword = "$y$j9T$I9LtX8Vx/2RKuUT1HjPKN/$TmoQPB/J7y3owZf80oWZjLPv//CVeUd8gVttcFeINQA"; + }; + users.groups."mousetbi" = { }; +}