os/secrets/secrets.nix
Akshay Mankar 4c4c4cab0b
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
secrets: Add keycloak-database-password
2023-04-17 18:41:44 +02:00

9 lines
386 B
Nix

let
# set ssh public keys here for your system and user
host_001_momo_koeln = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE7XTCHfX6ta8EtkdOcZLnpdhMmXDfTebVMs4NC8JEPj root@nixos";
axeman = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMNeQYLFauAbzDyIbKC86NUh9yZfiyBm/BtIdkcpZnSU @axeman";
allKeys = [host_001_momo_koeln axeman];
in {
"keycloak-database-password.age".publicKeys = allKeys;
}