nixos-config/modules/secrets/sops.nix

15 lines
173 B
Nix
Raw Normal View History

2024-10-29 09:06:17 +00:00
{
sops-nix,
...
2024-11-09 14:02:26 +00:00
}:
{
2024-10-29 09:06:17 +00:00
imports = [
"${sops-nix}/modules/sops"
];
sops.age = {
sshKeyPaths = [
2024-11-05 12:13:28 +00:00
"/persistent/etc/ssh/ssh_host_ed25519_key"
2024-10-29 09:06:17 +00:00
];
};
}