WS-KCNHUB/machines/kcnhub/users/carol.nix

13 lines
304 B
Nix

{ pkgs, ... }: {
users.users.carol = {
isNormalUser = true;
extraGroups = [ "wheel" ];
homeSize = "25g";
homeProjectId = 100;
packages = with pkgs; [
vscode
];
initialHashedPassword = "$y$j9T$ICVFVw1K1UGBqEPSMlZK4.$MuNuYki.uPsW7ZrBFacXZAAVyN/BrT2JgSKnNdqU8j6";
};
}