Files
nix-stuff/triple-dezert/sops.nix
Shelvacu 91a27769ba stuff
2025-05-23 17:56:46 -07:00

21 lines
408 B
Nix

{
inputs,
config,
lib,
...
}:
{
imports = [ inputs.sops-nix.nixosModules.sops ];
options.vacu.secretsFolder = lib.mkOption {
type = lib.types.path;
default = ../secrets;
};
config = {
sops.defaultSopsFile = config.vacu.secretsFolder + "/triple-dezert/main.yaml";
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
# sops.secrets.vacustore_smtp_key = {};
};
}