try fixing fancy qbittorent module

This commit is contained in:
Adrian Gunnar Lauterer 2024-04-14 08:09:32 +02:00
parent 1648415ea3
commit 695bcd65c9
3 changed files with 32 additions and 25 deletions

View File

@ -16,7 +16,7 @@
./zfs.nix ./zfs.nix
./backup.nix ./backup.nix
../../services/smb.nix ../../services/smb.nix
../../services/torrent.nix ../../services/qbittorrent.nix
#../../services/stableDiffusion.nix #../../services/stableDiffusion.nix
#../../services/freshrrs.nix #../../services/freshrrs.nix
#../../services/torrent.nix #../../services/torrent.nix

View File

@ -2,10 +2,10 @@
let let
cfg = config.services.qbittorrent-nox; cfg = config.services.qbittorrent-nox;
cfgPath = "/var/lib/qbittorrent/.config/qBittorrent/qBittorrent.conf";
path = "/var/lib/qbittorrent"; path = "/var/lib/qbittorrent";
cfgPath = "${path}/.config/qBittorrent/qBittorrent.conf";
configurationFile = lib.writeText "${cfgPath}" '' configurationFile = pkgs.writeText "qbittorrent-nox.conf" ''
[Application] [Application]
FileLogger\Age=${toString cfg.Filelogger.age} FileLogger\Age=${toString cfg.Filelogger.age}
FileLogger\AgeType=${toString cfg.Filelogger.ageType} FileLogger\AgeType=${toString cfg.Filelogger.ageType}
@ -24,7 +24,7 @@ let
Session\BTProtocol=${cfg.BTProtocol} Session\BTProtocol=${cfg.BTProtocol}
Session\BandwidthSchedulerEnabled=${toString cfg.BandwidthSchedulerEnabled} Session\BandwidthSchedulerEnabled=${toString cfg.BandwidthSchedulerEnabled}
Session\DefaultSavePath=${cfg.DefaultSavePath} Session\DefaultSavePath=${cfg.DefaultSavePath}
Session\Encryption=${ lib.mkIf cfg.Encryption "1" "0" } Session\Encryption=${toString cfg.Encryption }
Session\ExcludedFileNames=${cfg.ExcludedFileNames} Session\ExcludedFileNames=${cfg.ExcludedFileNames}
Session\FinishedTorrentExportDirectory=${cfg.FinishedTorrentExportDirectory} Session\FinishedTorrentExportDirectory=${cfg.FinishedTorrentExportDirectory}
Session\GlobalDLSpeedLimit=${toString cfg.GlobalDLSpeedLimit} Session\GlobalDLSpeedLimit=${toString cfg.GlobalDLSpeedLimit}
@ -190,8 +190,9 @@ in
}; };
Encryption = lib.mkOption { Encryption = lib.mkOption {
type = lib.types.bool; type = lib.types.int;
default = true; default = 1;
example = "0";
description = "Enable encryption."; description = "Enable encryption.";
}; };
@ -439,12 +440,6 @@ in
default = false; default = false;
description = "RSS Session enable processing."; description = "RSS Session enable processing.";
}; };
configFile = lib.mkOption {
type = lib.types.path;
default = "${cfgPath}";
description = "Path to qbittorrent-nox configuration file.";
};
}; };
@ -455,7 +450,7 @@ in
users.users = lib.mkIf (cfg.user == "qbittorrent") { users.users = lib.mkIf (cfg.user == "qbittorrent") {
qbittorrent = { qbittorrent = {
isSystemUser = true; isNormalUser = true;
home = path; home = path;
group = cfg.group; group = cfg.group;
}; };
@ -466,7 +461,9 @@ in
systemd.services."qbittorrent-nox" ={ systemd.services."qbittorrent-nox" ={
serviceConfig = { serviceConfig = {
ExecStart = "${pkgs.qbittorrent-nox}/bin/qbittorrent-nox --configuration=${cfg.configFile}"; #create the configuration file from string using echo
ExecStartPre = "${pkgs.coreutils}/bin/cat ${configurationFile}";
ExecStart = "${pkgs.qbittorrent-nox}/bin/qbittorrent-nox --configuration=${configurationFile}";
User = cfg.user; User = cfg.user;
Group = cfg.group; Group = cfg.group;
Restart = "on-failure"; Restart = "on-failure";

View File

@ -4,6 +4,17 @@ let
torrentPort = 44183; torrentPort = 44183;
savePath = "/Main/Data/media/Downloads/"; savePath = "/Main/Data/media/Downloads/";
path = "/var/lib/qbittorrent"; path = "/var/lib/qbittorrent";
in in
{ {
networking.firewall.allowedTCPPorts = [ port torrentPort]; networking.firewall.allowedTCPPorts = [ port torrentPort];
@ -27,19 +38,18 @@ in
Group = "qbittorrent"; Group = "qbittorrent";
Restart = "on-failure"; Restart = "on-failure";
#DynamicUser = true; DynamicUser = true;
#RuntimeDirectory = "qbittorrent"; InaccessiblePaths = [ "/home" "/root" "/run" "/boot" "/etc" "/proc" "/sys" "/usr" "/lib" "/bin" "/sbin" "/srv" "/opt" ];
#InaccessiblePaths = [ "/home" "/root" "/run" "/boot" "/etc" "/proc" "/sys" "/usr" "/lib" "/bin" "/sbin" "/srv" "/opt" ];
# Security options # Security options
#PrivateTmp = true; PrivateTmp = true;
#ProtectSystem = "full"; ProtectSystem = "full";
#ProtectKernelTunables = true; ProtectKernelTunables = true;
#ProtectKernelModules = true; ProtectKernelModules = true;
#ProtectControlGroups = true; ProtectControlGroups = true;
#NoNewPrivileges = true; NoNewPrivileges = true;
#ProtectHome = true; ProtectHome = true;
#PrivateDevices = true; PrivateDevices = true;
}; };
}; };
} }