11 lines
292 B
Nix
11 lines
292 B
Nix
let
|
|
lib = import ../../../lib { inherit (import <nixpkgs> { }) lib; };
|
|
publicKeys = lib.getNodeKeys "web01";
|
|
in
|
|
|
|
lib.setDefault { inherit publicKeys; } [
|
|
"plausible_admin-user-password-file"
|
|
"plausible_secret-key-base-file"
|
|
"plausible_release-cookie-file"
|
|
"_smtp-password-file"
|
|
]
|