nix-config/hosts/microwave/secrets.nix

13 lines
291 B
Nix
Raw Normal View History

2022-05-29 14:33:39 +02:00
{ config, ... }:
{
2022-06-18 11:49:27 +02:00
sops.defaultSopsFile = ../../secrets/microwave/secrets.yaml;
2022-05-29 14:33:39 +02:00
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets = {
"wg/wg-zw-seckey" = { };
"wg/wg-dvb-seckey" = { };
"wg/mlwd-nl-seckey" = { };
2022-06-18 11:49:27 +02:00
"wg/oxalab-seckey" = { };
2022-05-29 14:33:39 +02:00
};
}