2021-06-05 23:59:06 +03:00
|
|
|
let
|
|
|
|
max = (import ../users/max/userinfo.nix null).sshKeys;
|
|
|
|
hosts = import ../hosts;
|
|
|
|
systemKeys = x: x.ssh.id.publicKey or null;
|
|
|
|
in with hosts;
|
|
|
|
{
|
2021-10-16 15:43:19 +03:00
|
|
|
"acme-dns-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-16 21:23:43 +03:00
|
|
|
"coturn-static-auth.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-01-14 23:28:48 +02:00
|
|
|
"ghost-secrets.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-01-31 00:15:08 +02:00
|
|
|
"gitlab-initial-root-password.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"gitlab-openid-secret.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-02-01 22:18:08 +02:00
|
|
|
"gitlab-runner-registration.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-01-31 00:15:08 +02:00
|
|
|
"gitlab-secret-db.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"gitlab-secret-jws.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"gitlab-secret-otp.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"gitlab-secret-secret.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-05-15 01:34:09 +03:00
|
|
|
"grafana-secrets.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-03-31 20:42:20 +03:00
|
|
|
"hci-cache-config.age".publicKeys = max ++ map systemKeys [ VEGAS prophet ];
|
2022-03-31 20:43:17 +03:00
|
|
|
"hci-cache-credentials-prophet.age".publicKeys = max ++ map systemKeys [ prophet ];
|
2022-03-31 20:42:49 +03:00
|
|
|
"hci-cache-credentials-VEGAS.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-03-31 20:43:17 +03:00
|
|
|
"hci-token-prophet.age".publicKeys = max ++ map systemKeys [ prophet ];
|
2022-03-31 20:42:49 +03:00
|
|
|
"hci-token-VEGAS.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-12-01 23:27:26 +02:00
|
|
|
"hydra-bincache.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"hydra-builder-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"hydra-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"hydra-s3.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-11-13 13:33:25 +02:00
|
|
|
"hyprspace-key-VEGAS.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-02-05 20:09:35 +02:00
|
|
|
"hyprspace-key-prophet.age".publicKeys = max ++ map systemKeys [ prophet ];
|
2022-02-03 21:36:14 +02:00
|
|
|
"ipfs-swarm-key.age".publicKeys = max ++ map systemKeys [ VEGAS prophet ];
|
2021-10-16 21:24:30 +03:00
|
|
|
"keycloak-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-17 01:11:18 +03:00
|
|
|
"matrix-appservice-discord-token.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-16 20:59:06 +03:00
|
|
|
"minio-root-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-16 21:23:55 +03:00
|
|
|
"nextcloud-adminpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"nextcloud-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-16 20:39:49 +03:00
|
|
|
"oauth2_proxy-secrets.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-16 21:22:48 +03:00
|
|
|
"postfix-ldap-mailboxes.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-05-25 12:11:10 +03:00
|
|
|
"searxng-secrets.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-02-03 01:43:29 +02:00
|
|
|
"sips-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-10-17 01:11:18 +03:00
|
|
|
"synapse-db.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"synapse-keys.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"synapse-ldap.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
|
|
|
"synapse-turn.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-04-29 00:47:23 +03:00
|
|
|
"wireguard-key-storm-VEGAS.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-02-03 21:36:14 +02:00
|
|
|
"wireguard-key-wgautobahn.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2022-05-26 19:09:26 +03:00
|
|
|
"wireguard-key-wgmv.age".publicKeys = max ++ map systemKeys [ VEGAS ];
|
2021-06-05 23:59:06 +03:00
|
|
|
}
|