chore: add n8n-worker user and update authentication configuration

This commit is contained in:
2026-01-01 02:25:34 -05:00
parent d92e1426ba
commit 71dfd04108
4 changed files with 14 additions and 3 deletions

View File

@@ -1,8 +1,13 @@
let
keys = import ../lib/keys.nix;
authorizedKeys = [ keys.users.gortium.main keys.hosts.lazyworkhorse.main keys.hosts.lazyworkhorse.bootstrap ];
authorizedKeys = [
keys.users.gortium.main
keys.hosts.lazyworkhorse.main
keys.hosts.lazyworkhorse.bootstrap
];
in
{
"containers.env.age".publicKeys = authorizedKeys;
"lazyworkhorse_host_ssh_key.age".publicKeys = authorizedKeys;
"n8n_ssh_key.age".publicKeys = authorizedKeys;
}