forked from DGNum/infrastructure
17 lines
442 B
Nix
17 lines
442 B
Nix
let
|
|
lib = import ../../../lib { };
|
|
publicKeys = lib.getNodeKeys "web01";
|
|
in
|
|
lib.setDefault { inherit publicKeys; } [
|
|
"acme-certs_secret"
|
|
"bupstash-put_key"
|
|
"matterbridge-config_file"
|
|
"named-bind_dnskeys_conf"
|
|
"netbox-environment_file"
|
|
"ntfy_sh-environment_file"
|
|
"plausible_admin-user-password-file"
|
|
"plausible_secret-key-base-file"
|
|
"plausible_release-cookie-file"
|
|
"_smtp-password-file"
|
|
"castopod-environment_file"
|
|
]
|