summaryrefslogtreecommitdiff
path: root/hosts/cirrus/secrets.nix
blob: df095a734d1e3077ccf26567bf547dff5f292f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, ... }:
{
  sops.defaultSopsFile = ../../secrets/cirrus/secrets.yaml;
  sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];

  sops.secrets = {
    "wg/oxalab-seckey" = {
      owner = config.users.users.systemd-network.name;
    };
    "wg/oxaproxy-seckey" = {
      owner = config.users.users.systemd-network.name;
    };
  };
}