13 lines
314 B
Nix
13 lines
314 B
Nix
let
|
|
pubkeyModule = import ../hosts/pubkeys.nix;
|
|
pubkeys = [
|
|
pubkeyModule.macbook
|
|
] ++ pubkeyModule.groups.architect;
|
|
in
|
|
{
|
|
"matrix-synapse.age".publicKeys = pubkeys;
|
|
"teslamate.age".publicKeys = pubkeys;
|
|
"nextcloud-admin.age".publicKeys = pubkeys;
|
|
"nextcloud-database.age".publicKeys = pubkeys;
|
|
}
|