dotfiles/hosts/intelnuc/sops.nix
2024-03-21 18:05:19 +03:00

18 lines
290 B
Nix

{ config, lib, ... }:
{
sops = {
defaultSopsFile = ../../secrets/generic.yaml;
age.sshKeyPaths = [ "/home/delta/.ssh/id_ed25519" ];
defaultSopsFormat = "yaml";
secrets = {
"nginx/graf1" = { };
"nginx/graf2" = { };
"nginx/kibana" = { };
};
};
}