From 130037d1fcad788b578daabab92ea23fdedb75e9 Mon Sep 17 00:00:00 2001 From: Antoine Fauroux Date: Mon, 28 Jul 2025 09:46:31 -0400 Subject: [PATCH] kcnhub: user: add arthur --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/arthur.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 machines/kcnhub/users/arthur.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 9064688..46db548 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -22,6 +22,7 @@ ./users/jkaethee.nix ./users/afauroux.nix ./users/umar.nix + ./users/arthur.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/arthur.nix b/machines/kcnhub/users/arthur.nix new file mode 100644 index 0000000..6d91382 --- /dev/null +++ b/machines/kcnhub/users/arthur.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.arthur = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 123; + packages = with pkgs; [ + + ]; + }; +}