new: nixosModules: qbittorrent-nox

This commit is contained in:
L-Nafaryus 2024-03-22 23:21:25 +05:00
parent cce8899b68
commit 46a546d9dd
Signed by: L-Nafaryus
GPG Key ID: 582F8B0866B294A1
6 changed files with 145 additions and 4 deletions

View File

@ -41,6 +41,7 @@
simple-nixos-mailserver.nixosModules.mailserver simple-nixos-mailserver.nixosModules.mailserver
sops-nix.nixosModules.sops sops-nix.nixosModules.sops
self.nixosModules.papermc self.nixosModules.papermc
self.nixosModules.qbittorrent-nox
]; ];
specialArgs = { inherit inputs self; }; specialArgs = { inherit inputs self; };
}; };
@ -52,6 +53,8 @@
spoofdpi = import ./nixosModules/spoofdpi { inherit self; }; spoofdpi = import ./nixosModules/spoofdpi { inherit self; };
papermc = import ./nixosModules/papermc { inherit self; }; papermc = import ./nixosModules/papermc { inherit self; };
qbittorrent-nox = import ./nixosModules/qbittorrent-nox { inherit self; };
}; };
templates = { templates = {

View File

@ -71,6 +71,8 @@
{ domain = "@audio"; item = "rtprio"; type = "-"; value = "99"; } { domain = "@audio"; item = "rtprio"; type = "-"; value = "99"; }
{ domain = "@audio"; item = "nofile"; type = "soft"; value = "99999"; } { domain = "@audio"; item = "nofile"; type = "soft"; value = "99999"; }
{ domain = "@audio"; item = "nofile"; type = "hard"; value = "99999"; } { domain = "@audio"; item = "nofile"; type = "hard"; value = "99999"; }
{ domain = "*"; item = "nofile"; type = "-"; value = "524288"; }
{ domain = "*"; item = "memlock"; type = "-"; value = "524288"; }
]; ];
polkit.enable = true; polkit.enable = true;
}; };

View File

@ -161,6 +161,12 @@ rec {
services.spoofdpi.enable = true; services.spoofdpi.enable = true;
services.qbittorrent-nox = {
enable = true;
webuiPort = 8085;
openFirewall = true;
};
#services.btrbk = { #services.btrbk = {
# instances."catarina" = { # instances."catarina" = {
# onCalendar = "weekly"; # onCalendar = "weekly";

View File

@ -129,7 +129,7 @@
firewall = { firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 80 443 3001 25600 8080 ]; allowedTCPPorts = [ 80 443 3001 25600 8080 8085 ];
}; };
# interfaces.enp9s0.ipv4.addresses = [ { # interfaces.enp9s0.ipv4.addresses = [ {

View File

@ -0,0 +1,119 @@
{ self, ... }:
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.qbittorrent-nox;
in {
options.services.qbittorrent-nox = {
enable = mkEnableOption "Enables the qbittorrent-nox services";
port = mkOption rec {
type = types.int;
default = 6969;
example = default;
description = "Torrenting port";
};
webuiPort = mkOption rec {
type = types.port;
default = 8080;
example = default;
description = "WebUI port";
};
dataDir = mkOption rec {
type = types.path;
default = "/var/lib/qbittorrent-nox";
example = default;
description = "Directory to store qbittorrent-nox data files";
};
user = mkOption {
type = types.str;
default = "qbittorrent-nox";
description = lib.mdDoc "User account under which qbittorrent-nox runs.";
};
group = mkOption {
type = types.str;
default = "qbittorrent-nox";
description = lib.mdDoc "Group under which qbittorrent-nox runs.";
};
openFirewall = mkOption {
type = types.bool;
default = false;
description = "Open services.qbittorrent-nox.port";
};
package = mkOption {
type = types.package;
default = pkgs.qbittorrent-nox;
description = "The qbittorrent package to use";
};
};
config = mkIf cfg.enable {
users.users.qbittorrent-nox = {
description = "qbittorrent-nox service user";
home = cfg.dataDir;
createHome = true;
isSystemUser = true;
group = "qbittorrent-nox";
};
users.groups.qbittorrent-nox = {};
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ cfg.port ];
allowedUDPPorts = [ cfg.port ];
};
systemd.services.qbittorrent-nox = {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${cfg.package}/bin/qbittorrent-nox --torrenting-port=${toString cfg.port} --webui-port=${toString cfg.webuiPort}";
Restart = "always";
User = cfg.user;
Group = cfg.group;
WorkingDirectory = cfg.dataDir;
# Runtime directory and mode
RuntimeDirectory = "qbittorrent-nox";
RuntimeDirectoryMode = "0755";
# Proc filesystem
ProcSubset = "pid";
ProtectProc = "invisible";
# Access write directories
ReadWritePaths = [ cfg.dataDir ];
UMask = "0027";
# Capabilities
CapabilityBoundingSet = "";
# Security
NoNewPrivileges = true;
# Sandboxing
ProtectSystem = "strict";
ProtectHome = true;
PrivateTmp = true;
PrivateDevices = true;
PrivateUsers = true;
ProtectHostname = true;
ProtectClock = true;
ProtectKernelTunables = true;
ProtectKernelModules = true;
ProtectKernelLogs = true;
ProtectControlGroups = true;
RestrictAddressFamilies = [ "AF_UNIX" "AF_INET" "AF_INET6" ];
RestrictNamespaces = true;
LockPersonality = true;
MemoryDenyWriteExecute = true;
RestrictRealtime = true;
RestrictSUIDSGID = true;
RemoveIPC = true;
PrivateMounts = true;
};
};
};
}

View File

@ -16,12 +16,18 @@ in {
}; };
port = mkOption rec { port = mkOption rec {
type = types.str; type = types.port;
default = "8080"; default = 8080;
example = default; example = default;
description = "Port"; description = "Port";
}; };
openFirewall = mkOption {
type = types.bool;
default = false;
description = "Open services.spoofdpi.port";
};
dns = mkOption rec { dns = mkOption rec {
type = types.str; type = types.str;
default = "8.8.8.8"; default = "8.8.8.8";
@ -33,11 +39,16 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
systemd.services.spoofdpi = { systemd.services.spoofdpi = {
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = { serviceConfig = {
Restart = "on-failure"; Restart = "on-failure";
ExecStart = "${pkg}/bin/spoof-dpi -no-banner -addr ${cfg.address} -port ${cfg.port} -dns ${cfg.dns}"; ExecStart = "${pkg}/bin/spoof-dpi -no-banner -addr ${cfg.address} -port ${toString cfg.port} -dns ${cfg.dns}";
DynamicUser = "yes"; DynamicUser = "yes";
}; };
}; };
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ cfg.port ];
};
}; };
} }