nyx/secrets/secrets.nix

18 lines
272 B
Nix
Raw Normal View History

2024-12-20 15:11:42 +02:00
{
inputs,
config,
...
}: {
imports = [inputs.sops-nix.nixosModules.sops];
2024-10-25 16:45:25 +03:00
sops = {
defaultSopsFile = ./secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/pingu/.config/sops/age/keys.txt";
secrets = {
searx = {};
};
2024-10-25 16:45:25 +03:00
};
}