Files
infra/users/n8n-worker.nix
Thierry Pouplier b54760f62b docs: initialize NixOS infrastructure with AI assistant
Creates PROJECT.md with vision and requirements.
Creates config.json with interactive workflow mode.
2026-01-01 01:36:58 -05:00

12 lines
298 B
Nix

{ 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 = {};