nix-config/hosts/cloud/secrets.nix

12 lines
251 B
Nix
Raw Normal View History

2025-01-11 02:34:54 +01:00
{ config, ... }:
{
sops.defaultSopsFile = ../../secrets/cloud/secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets = {
"wg/0xa-mgmt" = {
owner = config.users.users.systemd-network.name;
};
};
}