From f06d9028f0a8dca9ea4800c810e40801c6e686a2 Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Sun, 14 Jun 2026 19:52:11 -0400 Subject: [PATCH] feat: add ai-worker user to uConsole for Hermes SSH access --- hosts/uconsole-cm5/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/uconsole-cm5/configuration.nix b/hosts/uconsole-cm5/configuration.nix index 5ac7b1b..45e4c42 100644 --- a/hosts/uconsole-cm5/configuration.nix +++ b/hosts/uconsole-cm5/configuration.nix @@ -34,3 +34,12 @@ } + + # AI worker user (Hermes access) + users.users.ai-worker = { + isNormalUser = false; + shell = pkgs.bash; + openssh.authorizedKeys.keys = with keys; [ + users.ai-worker.main + ]; + };