add torrenting config
This commit is contained in:
parent
1a0012bbf3
commit
1b3c7412ae
3 changed files with 54 additions and 1 deletions
|
|
@ -215,6 +215,7 @@
|
||||||
}
|
}
|
||||||
./system
|
./system
|
||||||
./system/searxng
|
./system/searxng
|
||||||
|
./system/torrenting
|
||||||
./system/widevine
|
./system/widevine
|
||||||
./system/shell/fish.nix
|
./system/shell/fish.nix
|
||||||
./system/tailscale
|
./system/tailscale
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,6 @@
|
||||||
libreoffice-qt-fresh
|
libreoffice-qt-fresh
|
||||||
# nur.repos.forkprince.helium-nightly
|
# nur.repos.forkprince.helium-nightly
|
||||||
chromium
|
chromium
|
||||||
qbittorrent
|
|
||||||
nautilus
|
nautilus
|
||||||
fractal
|
fractal
|
||||||
tuba
|
tuba
|
||||||
|
|
|
||||||
53
system/torrenting/default.nix
Normal file
53
system/torrenting/default.nix
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
users.users.sckova.extraGroups = [ "qbittorrent" ];
|
||||||
|
services = {
|
||||||
|
qbittorrent = {
|
||||||
|
enable = true;
|
||||||
|
serverConfig = {
|
||||||
|
Preferences = {
|
||||||
|
Advanced.useSystemIconTheme = true;
|
||||||
|
General = {
|
||||||
|
CloseToTray = false;
|
||||||
|
CloseToTrayNotified = true;
|
||||||
|
ExitConfirm = false;
|
||||||
|
Locale = "en";
|
||||||
|
};
|
||||||
|
WebUI = {
|
||||||
|
Address = "*";
|
||||||
|
Enabled = true;
|
||||||
|
Port = 9697;
|
||||||
|
UseUPnP = false;
|
||||||
|
};
|
||||||
|
BitTorrent = {
|
||||||
|
SessionGlobalDLSpeedLimit = 0;
|
||||||
|
GlobalUPSpeedLimit = 0;
|
||||||
|
Port = 42578;
|
||||||
|
QueueingSystemEnabled = false;
|
||||||
|
SSL.Port = 63114;
|
||||||
|
StartPaused = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
flaresolverr = {
|
||||||
|
enable = true;
|
||||||
|
port = 8191;
|
||||||
|
};
|
||||||
|
prowlarr = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
server = {
|
||||||
|
urlbase = "localhost";
|
||||||
|
port = 9696;
|
||||||
|
bindaddress = "*";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue