kcnhub: user: add arthur

master
Antoine Fauroux 2025-07-28 09:46:31 -04:00
parent 1b7e4d9a2b
commit 130037d1fc
2 changed files with 12 additions and 0 deletions

View File

@ -22,6 +22,7 @@
./users/jkaethee.nix
./users/afauroux.nix
./users/umar.nix
./users/arthur.nix
# Groups
./users/groups/admin.nix

View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
users.users.arthur = {
isNormalUser = true;
extraGroups = [ ];
homeSize = "50g";
homeProjectId = 123;
packages = with pkgs; [
];
};
}