mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2025-08-04 01:00:22 -04:00
11 lines
273 B
Nix
11 lines
273 B
Nix
{...}: {
|
|
# Enable qBittorrent daemon
|
|
services.qbittorrent = {
|
|
enable = true;
|
|
dataDir = "/var/lib/qbittorrent";
|
|
user = "qbittorrent";
|
|
group = "qbittorrent";
|
|
port = 8080; # WebUI port
|
|
openFirewall = true; # Opens the WebUI port in firewall
|
|
};
|
|
}
|