depot/secrets/secrets.nix

30 lines
1.7 KiB
Nix
Raw Normal View History

2021-06-05 22:59:06 +02: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 14:43:19 +02:00
"acme-dns-key.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 20:23:43 +02:00
"coturn-static-auth.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 19:35:22 +02:00
"discourse-adminpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"discourse-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 19:35:50 +02:00
"gitea-db-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-06-05 22:59:06 +02:00
"hydra-db-credentials.age".publicKeys = max ++ map systemKeys [ styx ];
2021-10-16 19:35:50 +02:00
"hydra-s3.age".publicKeys = max ++ map systemKeys [ styx ];
2021-11-13 13:33:25 +02:00
"hyprspace-key-VEGAS.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 20:24:30 +02:00
"keycloak-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"matrix-appservice-discord-token.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 19:59:06 +02:00
"minio-console-secrets.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"minio-root-credentials.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 20:23:55 +02:00
"nextcloud-adminpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"nextcloud-dbpass.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 19:39:49 +02:00
"oauth2_proxy-secrets.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 20:22:48 +02:00
"postfix-ldap-mailboxes.age".publicKeys = max ++ map systemKeys [ VEGAS ];
"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 ];
"wireguard-key-wgautobahn.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-10-16 19:59:19 +02:00
"vpn-host-key-VEGAS.age".publicKeys = max ++ map systemKeys [ VEGAS ];
2021-06-05 22:59:06 +02:00
}