Progress dump before ai agent

This commit is contained in:
2026-04-04 04:57:47 -04:00
parent 58f7dd65f1
commit 13dbf18f67
18 changed files with 687 additions and 128 deletions

View File

@@ -1,12 +1,12 @@
{ pkgs, inputs, config, keys, ... }: {
users.users.n8n-worker = {
users.users.ai-worker = {
isSystemUser = true;
group = "n8n-worker";
group = "ai-worker";
extraGroups = [ "docker" ];
shell = pkgs.bashInteractive;
openssh.authorizedKeys.keys = [
keys.users.n8n-worker.main
keys.users.ai-worker.main
];
};
users.groups.n8n-worker = {};
users.groups.ai-worker = {};
}