9 lines
117 B
Nix
9 lines
117 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
services.deluge = {
|
|
enable = true;
|
|
web.enable = true;
|
|
web.port = 8112;
|
|
};
|
|
}
|