2020-10-04 16:06:53 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.services.nzbhydra2;
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.nzbhydra2 = {
|
2024-08-24 22:05:51 +02:00
|
|
|
enable = lib.mkEnableOption "NZBHydra2, Usenet meta search";
|
2020-10-04 16:06:53 +02:00
|
|
|
|
2024-08-24 22:05:51 +02:00
|
|
|
dataDir = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
2020-10-04 16:06:53 +02:00
|
|
|
default = "/var/lib/nzbhydra2";
|
|
|
|
description = "The directory where NZBHydra2 stores its data files.";
|
|
|
|
};
|
|
|
|
|
2024-08-24 22:05:51 +02:00
|
|
|
openFirewall = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2020-10-04 16:06:53 +02:00
|
|
|
default = false;
|
|
|
|
description = "Open ports in the firewall for the NZBHydra2 web interface.";
|
|
|
|
};
|
|
|
|
|
2024-08-24 22:05:51 +02:00
|
|
|
package = lib.mkPackageOption pkgs "nzbhydra2" { };
|
2020-10-04 16:06:53 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-24 22:05:51 +02:00
|
|
|
config = lib.mkIf cfg.enable {
|
2020-10-04 16:06:53 +02:00
|
|
|
systemd.tmpfiles.rules = [ "d '${cfg.dataDir}' 0700 nzbhydra2 nzbhydra2 - -" ];
|
|
|
|
|
|
|
|
systemd.services.nzbhydra2 = {
|
|
|
|
description = "NZBHydra2";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
User = "nzbhydra2";
|
|
|
|
Group = "nzbhydra2";
|
|
|
|
ExecStart = "${cfg.package}/bin/nzbhydra2 --nobrowser --datafolder '${cfg.dataDir}'";
|
|
|
|
Restart = "on-failure";
|
|
|
|
# Hardening
|
|
|
|
NoNewPrivileges = true;
|
|
|
|
PrivateTmp = true;
|
|
|
|
PrivateDevices = true;
|
|
|
|
DevicePolicy = "closed";
|
|
|
|
ProtectSystem = "strict";
|
|
|
|
ReadWritePaths = cfg.dataDir;
|
|
|
|
ProtectHome = "read-only";
|
|
|
|
ProtectControlGroups = true;
|
|
|
|
ProtectKernelModules = true;
|
|
|
|
ProtectKernelTunables = true;
|
|
|
|
RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6 AF_NETLINK";
|
|
|
|
RestrictNamespaces = true;
|
|
|
|
RestrictRealtime = true;
|
|
|
|
RestrictSUIDSGID = true;
|
|
|
|
LockPersonality = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-24 22:05:51 +02:00
|
|
|
networking.firewall = lib.mkIf cfg.openFirewall { allowedTCPPorts = [ 5076 ]; };
|
2020-10-04 16:06:53 +02:00
|
|
|
|
|
|
|
users.users.nzbhydra2 = {
|
|
|
|
group = "nzbhydra2";
|
|
|
|
isSystemUser = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.groups.nzbhydra2 = { };
|
|
|
|
};
|
|
|
|
}
|