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

  sops.secrets = {
    "wg/0xa-mgmt" = {
      owner = config.users.users.systemd-network.name;
    };
  };
}