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"; + }; +}