ADD transmission
This commit is contained in:
parent
eee1f76df3
commit
ee61254dde
|
@ -7,6 +7,7 @@
|
|||
../modules/users.nix
|
||||
../modules/common.nix
|
||||
../modules/navidrome.nix
|
||||
../modules/transmission.nix
|
||||
../modules/prometheus-node.nix
|
||||
./agenix.nix
|
||||
# <agenix/modules/age.nix>
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
services.transmission = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
openRPCPort = true;
|
||||
settings = {
|
||||
rpc-bind-address = "0.0.0.0";
|
||||
rpc-whitelist = "192.168.10.*";
|
||||
rpc-whitelist-enable = true;
|
||||
};
|
||||
};
|
||||
#networking.firewall.allowedTCPPorts = [ 9091 ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue