2024-12-06 20:49:18 +00:00
|
|
|
let
|
2024-12-06 21:08:06 +00:00
|
|
|
pubkeyModule = import ../hosts/pubkeys.nix;
|
2024-12-06 20:49:18 +00:00
|
|
|
pubkeys = [
|
2024-12-06 21:08:06 +00:00
|
|
|
pubkeyModule.macbook
|
2024-12-06 21:11:16 +00:00
|
|
|
] ++ pubkeyModule.groups.architect;
|
2024-12-06 20:49:18 +00:00
|
|
|
in
|
|
|
|
{
|
2024-12-06 20:55:44 +00:00
|
|
|
"matrix-synapse.age".publicKeys = pubkeys;
|
|
|
|
"teslamate.age".publicKeys = pubkeys;
|
2024-12-06 21:17:00 +00:00
|
|
|
"nextcloud-admin.age".publicKeys = pubkeys;
|
|
|
|
"nextcloud-database.age".publicKeys = pubkeys;
|
2024-12-06 22:58:46 +00:00
|
|
|
"restic-environment.age".publicKeys = pubkeys;
|
|
|
|
"restic-passwords.age".publicKeys = pubkeys;
|
2024-12-06 20:49:18 +00:00
|
|
|
}
|