Merge pull request #197193 from onny/manticore-service
nixos/manticore: init module
This commit is contained in:
commit
decb1678b6
@ -108,6 +108,8 @@ Use `services.pipewire.extraConfig` or `services.pipewire.configPackages` for Pi
|
||||
|
||||
- [dnsproxy](https://github.com/AdguardTeam/dnsproxy), a simple DNS proxy with DoH, DoT, DoQ and DNSCrypt support. Available as [services.dnsproxy](#opt-services.dnsproxy.enable).
|
||||
|
||||
- [manticoresearch](https://manticoresearch.com), easy to use open source fast database for search. Available as [services.manticore](#opt-services.manticore.enable).
|
||||
|
||||
- [rspamd-trainer](https://gitlab.com/onlime/rspamd-trainer), script triggered by a helper which reads mails from a specific mail inbox and feeds them into rspamd for spam/ham training.
|
||||
|
||||
- [ollama](https://ollama.ai), server for running large language models locally.
|
||||
|
@ -1224,6 +1224,7 @@
|
||||
./services/search/elasticsearch-curator.nix
|
||||
./services/search/elasticsearch.nix
|
||||
./services/search/hound.nix
|
||||
./services/search/manticore.nix
|
||||
./services/search/meilisearch.nix
|
||||
./services/search/opensearch.nix
|
||||
./services/search/qdrant.nix
|
||||
|
131
nixos/modules/services/search/manticore.nix
Normal file
131
nixos/modules/services/search/manticore.nix
Normal file
@ -0,0 +1,131 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
cfg = config.services.manticore;
|
||||
format = pkgs.formats.json { };
|
||||
|
||||
toSphinx = {
|
||||
mkKeyValue ? mkKeyValueDefault {} "=",
|
||||
listsAsDuplicateKeys ? true
|
||||
}: attrsOfAttrs:
|
||||
let
|
||||
# map function to string for each key val
|
||||
mapAttrsToStringsSep = sep: mapFn: attrs:
|
||||
concatStringsSep sep
|
||||
(mapAttrsToList mapFn attrs);
|
||||
mkSection = sectName: sectValues: ''
|
||||
${sectName} {
|
||||
'' + lib.generators.toKeyValue { inherit mkKeyValue listsAsDuplicateKeys; } sectValues + ''}'';
|
||||
in
|
||||
# map input to ini sections
|
||||
mapAttrsToStringsSep "\n" mkSection attrsOfAttrs;
|
||||
|
||||
configFile = pkgs.writeText "manticore.conf" (
|
||||
toSphinx {
|
||||
mkKeyValue = k: v: " ${k} = ${v}";
|
||||
} cfg.settings
|
||||
);
|
||||
|
||||
in {
|
||||
|
||||
options = {
|
||||
services.manticore = {
|
||||
|
||||
enable = mkEnableOption "Manticoresearch";
|
||||
|
||||
settings = mkOption {
|
||||
default = {
|
||||
searchd = {
|
||||
listen = [
|
||||
"127.0.0.1:9312"
|
||||
"127.0.0.1:9306:mysql"
|
||||
"127.0.0.1:9308:http"
|
||||
];
|
||||
log = "/var/log/manticore/searchd.log";
|
||||
query_log = "/var/log/manticore/query.log";
|
||||
pid_file = "/run/manticore/searchd.pid";
|
||||
data_dir = "/var/lib/manticore";
|
||||
};
|
||||
};
|
||||
description = ''
|
||||
Configuration for Manticoresearch. See
|
||||
<https://manual.manticoresearch.com/Server%20settings>
|
||||
for more information.
|
||||
'';
|
||||
type = types.submodule {
|
||||
freeformType = format.type;
|
||||
};
|
||||
example = literalExpression ''
|
||||
{
|
||||
searchd = {
|
||||
listen = [
|
||||
"127.0.0.1:9312"
|
||||
"127.0.0.1:9306:mysql"
|
||||
"127.0.0.1:9308:http"
|
||||
];
|
||||
log = "/var/log/manticore/searchd.log";
|
||||
query_log = "/var/log/manticore/query.log";
|
||||
pid_file = "/run/manticore/searchd.pid";
|
||||
data_dir = "/var/lib/manticore";
|
||||
};
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
systemd = {
|
||||
packages = [ pkgs.manticoresearch ];
|
||||
services.manticore = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = [
|
||||
""
|
||||
"${pkgs.manticoresearch}/bin/searchd --config ${configFile}"
|
||||
];
|
||||
ExecStop = [
|
||||
""
|
||||
"${pkgs.manticoresearch}/bin/searchd --config ${configFile} --stopwait"
|
||||
];
|
||||
ExecStartPre = [ "" ];
|
||||
DynamicUser = true;
|
||||
LogsDirectory = "manticore";
|
||||
RuntimeDirectory = "manticore";
|
||||
StateDirectory = "manticore";
|
||||
ReadWritePaths = "";
|
||||
CapabilityBoundingSet = "";
|
||||
RestrictAddressFamilies = [ "AF_UNIX" "AF_INET" "AF_INET6" ];
|
||||
RestrictNamespaces = true;
|
||||
PrivateDevices = true;
|
||||
PrivateUsers = true;
|
||||
ProtectClock = true;
|
||||
ProtectControlGroups = true;
|
||||
ProtectHome = true;
|
||||
ProtectKernelLogs = true;
|
||||
ProtectKernelModules = true;
|
||||
ProtectKernelTunables = true;
|
||||
SystemCallArchitectures = "native";
|
||||
SystemCallFilter = [ "@system-service" "~@privileged" ];
|
||||
RestrictRealtime = true;
|
||||
LockPersonality = true;
|
||||
MemoryDenyWriteExecute = true;
|
||||
UMask = "0066";
|
||||
ProtectHostname = true;
|
||||
} // lib.optionalAttrs (cfg.settings.searchd.pid_file != null) {
|
||||
PIDFile = cfg.settings.searchd.pid_file;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ onny ];
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user