- Add headless openclaw node systemd service for host execution - Migrate from nix to lix package manager - Permit openclaw-2026.3.12 (insecure package warning) - Use ai-worker user for node service
15 lines
396 B
Nix
15 lines
396 B
Nix
let
|
|
keys = import ../lib/keys.nix;
|
|
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;
|
|
"openclaw_gateway_token.age".publicKeys = authorizedKeys;
|
|
}
|