docs: initialize NixOS infrastructure with AI assistant

Creates PROJECT.md with vision and requirements.
Creates config.json with interactive workflow mode.
This commit is contained in:
2026-01-01 01:36:58 -05:00
parent 1210a44ecc
commit b54760f62b
8 changed files with 258 additions and 0 deletions

11
users/n8n-worker.nix Normal file
View File

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