nixos: services: transmission: use longer timeout
All checks were successful
ci/woodpecker/push/check Pipeline was successful

It looks like Transmission takes time roughly proportional with the
number of open files to stop, so let's increase the timeout slightly.
This commit is contained in:
Bruno BELANYI 2025-11-17 12:45:22 +01:00
parent 127e26b259
commit b37bde6eaf

View file

@ -77,6 +77,8 @@ in
MemoryMax = "33%"; MemoryMax = "33%";
# Avoid errors due to high number of open files. # Avoid errors due to high number of open files.
LimitNOFILE = 1048576; LimitNOFILE = 1048576;
# Longer stop timeout to finish all torrents
TimeoutStopSec = "5m";
}; };
}; };