13 lines
221 B
Nix
13 lines
221 B
Nix
{ lib, ... }:
|
|
{
|
|
services.deluge = {
|
|
enable = true;
|
|
web.enable = true;
|
|
};
|
|
systemd.services.deluged.serviceConfig = {
|
|
MemoryMax = "4G";
|
|
Restart = lib.mkForce "always";
|
|
RuntimeMaxSec = "3h";
|
|
};
|
|
}
|