mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 02:51:18 +00:00
ed8a0d8e5e
The user should be able to specify a patched version of searx.
80 lines
1.5 KiB
Nix
80 lines
1.5 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with 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. See https://github.com/asciimoo/searx
|
|
";
|
|
};
|
|
|
|
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).
|
|
";
|
|
};
|
|
|
|
package = mkOption {
|
|
default = pkgs.pythonPackages.searx;
|
|
description = "searx package to use.";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### 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";
|
|
ExecStart = "${cfg.package}/bin/searx-run";
|
|
};
|
|
} // (optionalAttrs (configFile != "") {
|
|
environment.SEARX_SETTINGS_PATH = configFile;
|
|
});
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
};
|
|
|
|
}
|