master
David Crompton 2023-08-17 10:13:02 -04:00
parent 2dc4420dbb
commit 81cb305245
2 changed files with 18 additions and 0 deletions

View File

@ -3,5 +3,6 @@
./users/david.nix ./users/david.nix
./users/darian.nix ./users/darian.nix
./users/carol.nix ./users/carol.nix
./users/alan.nix
]; ];
} }

View File

@ -0,0 +1,17 @@
{ pkgs, ... }: {
users.users.alan = {
isNormalUser = true;
extraGroups = [ "wheel" ];
homeSize = "50g";
homeProjectId = 103;
packages = with pkgs; [
jetbrains.pycharm-community
github-desktop
];
initialHashedPassword = "$y$j9T$/af/N5qkHZuEh4Av.CNqA1$0bq0cQxUAjW201n863MM3sexN29supOVNvpd6XxpWrB";
};
# Github desktop uses this to be deprecated package, do it anyways:
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1u"
];
}