nyx/secrets/secrets.nix

18 lines
272 B
Nix
Raw Normal View History

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