From 312e002f9a87d8d8c7ffe4f54eaa5ed615af56e9 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Thu, 19 Oct 2023 09:55:17 -0400 Subject: [PATCH] Add Frances --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/frances.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 machines/kcnhub/users/frances.nix 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" = { }; +}