From 820de72c0f4c167b7df5130d801b029a64c8347b Mon Sep 17 00:00:00 2001 From: Hermes Date: Tue, 16 Jun 2026 19:05:03 -0400 Subject: [PATCH] fix: remove duplicate ai-worker user definition in configuration.nix ai-worker is now defined in users/ai-worker/ai-worker.nix module --- hosts/uconsole-cm5/configuration.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/hosts/uconsole-cm5/configuration.nix b/hosts/uconsole-cm5/configuration.nix index 83c7bed..c0c6fce 100644 --- a/hosts/uconsole-cm5/configuration.nix +++ b/hosts/uconsole-cm5/configuration.nix @@ -20,16 +20,8 @@ users.ai-worker.main ]; - # AI worker user (Hermes SSH access) - users.users.ai-worker = { - isNormalUser = false; - shell = pkgs.bash; - openssh.authorizedKeys.keys = with keys; [ - users.ai-worker.main - ]; - }; - - # Age secret for gortium password (file created by user) + # Gitsign: sign git commits with age identity + programs.gitsign.enable = true; age.secrets.gortium_password = { file = ../secrets/gortium_password.age; };