mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
17 lines
272 B
Nix
17 lines
272 B
Nix
{
|
|
inputs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [inputs.sops-nix.nixosModules.sops];
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
defaultSopsFormat = "yaml";
|
|
age.keyFile = "/home/pingu/.config/sops/age/keys.txt";
|
|
|
|
secrets = {
|
|
searx = {};
|
|
};
|
|
};
|
|
}
|