transmission: init

This commit is contained in:
LavaDesu 2021-10-06 22:38:07 +07:00
parent 3a5aa3c79e
commit 4404b67170
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ config, ... }: {
services.transmission = {
enable = true;
downloadDirPermissions = "775";
settings = {
alt-speed-down = 512;
alt-speed-enabled = true;
alt-speed-time-begin = 360;
alt-speed-time-day = 127;
alt-speed-time-enabled = true;
alt-speed-time-end = 1380;
alt-speed-up = 256;
ratio-limit-enabled = true;
rpc-host-whitelist = "${config.networking.hostName}";
rpc-whitelist = "10.100.0.*,10.0.0.*,192.168.100.*";
};
};
}