nyx/secrets/secrets.nix

14 lines
268 B
Nix
Raw Normal View History

{ 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
};
}