nixos-config/config/sops.nix

11 lines
404 B
Nix
Raw Normal View History

2022-01-14 14:13:55 +00:00
{ config, ... }:
{
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
2022-01-14 14:16:58 +00:00
sops.defaultSopsFile = ../secrets + "/${config.networking.hostName}/secrets.yaml";
sops.secrets."network/wireguard/privkey" = { };
2022-01-14 16:44:25 +00:00
sops.secrets."security/acme/dns" = { };
2022-01-15 17:08:47 +00:00
sops.secrets."security/restic/password" = { };
2022-01-16 16:44:30 +00:00
sops.secrets."security/minio/credentials_file" = { };
2022-01-17 09:49:37 +00:00
sops.secrets."services/gitea" = { };
2022-01-14 14:13:55 +00:00
}