nix-config/hosts/cirrus/secrets.nix

12 lines
257 B
Nix
Raw Normal View History

2022-06-17 19:28:55 +02:00
{ config, ... }:
{
sops.defaultSopsFile = ../../secrets/cirrus/secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets = {
2022-06-18 14:51:14 +02:00
"wg/oxalab-seckey" = {
owner = config.users.users.systemd-network.name;
};
2022-06-17 19:28:55 +02:00
};
}