forked from DGNum/infrastructure
14 lines
339 B
Nix
14 lines
339 B
Nix
let
|
|
lib = import ../../../lib { };
|
|
publicKeys = lib.getNodeKeys "compute01";
|
|
in
|
|
|
|
lib.setDefault { inherit publicKeys; } [
|
|
"ds_fr-secret_file"
|
|
"mastodon-extra_env_file"
|
|
"nextcloud-adminpass_file"
|
|
"nextcloud-s3_secret_file"
|
|
"outline-oidc_client_secret_file"
|
|
"outline-smtp_password_file"
|
|
"outline-storage_secret_key_file"
|
|
]
|