77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
with pkgs.lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.services.searx;
|
||
|
|
||
|
configFile = cfg.configFile;
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
|
||
|
###### interface
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.searx = {
|
||
|
|
||
|
enable = mkOption {
|
||
|
default = false;
|
||
|
description = "
|
||
|
Whether to enable the Searx server.
|
||
|
";
|
||
|
};
|
||
|
|
||
|
configFile = mkOption {
|
||
|
default = "";
|
||
|
description = "
|
||
|
The path of the Searx server configuration file. If no file
|
||
|
is specified, a default file is used (default config file has
|
||
|
debug mode enabled).
|
||
|
";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
###### implementation
|
||
|
|
||
|
config = mkIf config.services.searx.enable {
|
||
|
|
||
|
users.extraUsers.searx =
|
||
|
{ uid = config.ids.uids.searx;
|
||
|
description = "Searx user";
|
||
|
createHome = true;
|
||
|
home = "/var/lib/searx";
|
||
|
};
|
||
|
|
||
|
users.extraGroups.searx =
|
||
|
{ gid = config.ids.gids.searx;
|
||
|
};
|
||
|
|
||
|
systemd.services.searx =
|
||
|
{
|
||
|
description = "Searx server, the meta search engine.";
|
||
|
after = [ "network.target" ];
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
serviceConfig.User = "searx";
|
||
|
script = ''
|
||
|
if [ -z "${configFile}" ]; then
|
||
|
exec ${pkgs.pythonPackages.searx}/bin/searx-run
|
||
|
else
|
||
|
SEARX_SETTINGS_PATH="${configFile}" exec ${pkgs.pythonPackages.searx}/bin/searx-run
|
||
|
fi
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = [ pkgs.pythonPackages.searx ];
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|