Add Carol
parent
dd15927f3a
commit
940f1a3546
|
@ -2,5 +2,6 @@
|
|||
imports = [
|
||||
./users/david.nix
|
||||
./users/darian.nix
|
||||
./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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue