You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.2 KiB

{ config, ... }: {
services.deluge = {
enable = true;
declarative = true;
authFile = config.sops.secrets.deluge-accounts.path;
config = {
copy_torrent_file = true;
move_completed = true;
torrentfiles_location = "/srv/torrents/files";
download_location = "/srv/torrents/downloading";
move_completed_path = "/srv/torrents/completed";
dont_count_slow_torrents = true;
max_active_seeding = -1;
max_active_limit = -1;
max_active_downloading = 8;
# Daemon on 58846
allow_remote = true;
daemon_port = 58846;
# Listen on 6880 only
random_port = false;
listen_ports = [ 6880 6880 ];
# Outgoing is random
random_outgoing_ports = true;
};
openFirewall = true; # Forward listen ports
};
sops.secrets.deluge-accounts = {
sopsFile = ../secrets.yaml;
owner = config.users.users.deluge.name;
group = config.users.users.deluge.group;
};
networking.firewall = {
# Remote control port
allowedTCPPorts = [ 58846 ];
};
environment.persistence = {
"/persist".directories = [
"/var/lib/deluge"
"/srv/torrents"
];
};
}