Skip to content

Commit

Permalink
Rebuild: NixOS: 24
Browse files Browse the repository at this point in the history
  • Loading branch information
JPyke3 committed Aug 27, 2024
1 parent 2f5cb5f commit 962f262
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions programs/daemon/searxng.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{sops, config, ...}: {
{
sops,
config,
...
}: {
sops.secrets."programs/searx/envfile" = {};
services.searx = {
enable = true;
environmentFile = config.sops.secrets."programs/searx/envfile".path;
settings = {
server.port = 2082;
server.bind_address = "0.0.0.0";
server.secret_key = "@SEARX_SECRET_KEY@"
};
environmentFile = config.sops.secrets."programs/searx/envfile".path;
settings = {
server.port = 2082;
server.bind_address = "0.0.0.0";
server.secret_key = "@SEARX_SECRET_KEY@";
};
};
}

0 comments on commit 962f262

Please sign in to comment.