12 lines
213 B
Nix
12 lines
213 B
Nix
let
|
|
pubkeyModule = import ../hosts/pubkeys.nix;
|
|
pubkeys = [
|
|
pubkeyModule.macbook
|
|
pubkeyModule.architect
|
|
];
|
|
in
|
|
{
|
|
"matrix-synapse.age".publicKeys = pubkeys;
|
|
"teslamate.age".publicKeys = pubkeys;
|
|
}
|