Files
nix-stuff/hosts/solis/sops.nix
2025-08-22 13:27:12 -07:00

15 lines
211 B
Nix

{
inputs,
...
}:
{
imports = [ inputs.sops-nix.nixosModules.sops ];
config = {
sops.defaultSopsFile = ../secrets/solis.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
};
}