From 940f1a3546720812d33aa1ef0a2d565b339dbac6 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 1 Aug 2023 13:51:40 -0400 Subject: [PATCH] Add Carol --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/carol.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 machines/kcnhub/users/carol.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index dfa63ce..ee16ea2 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -2,5 +2,6 @@ imports = [ ./users/david.nix ./users/darian.nix + ./users/carol.nix ]; } diff --git a/machines/kcnhub/users/carol.nix b/machines/kcnhub/users/carol.nix new file mode 100644 index 0000000..ef11a60 --- /dev/null +++ b/machines/kcnhub/users/carol.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.carol = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + homeSize = "25g"; + homeProjectId = 100; + packages = with pkgs; [ + vscode + ]; + initialHashedPassword = "$y$j9T$ICVFVw1K1UGBqEPSMlZK4.$MuNuYki.uPsW7ZrBFacXZAAVyN/BrT2JgSKnNdqU8j6"; + }; +}