forked from DGNum/infrastructure
15 lines
410 B
Nix
15 lines
410 B
Nix
let
|
|
lib = import ../../../lib { };
|
|
publicKeys = lib.getNodeKeys "storage01";
|
|
in
|
|
lib.setDefault { inherit publicKeys; } [
|
|
"atticd-credentials_file"
|
|
"forgejo-mailer_password_file"
|
|
"forgejo_runners-token_file"
|
|
"garage-environment_file"
|
|
"netbird-auth_client_secret_file"
|
|
"peertube-secrets_file"
|
|
"peertube-service_environment_file"
|
|
"peertube-smtp_password_file"
|
|
"prometheus-web_config_file"
|
|
]
|