12 lines
268 B
Nix
12 lines
268 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [ ./nginx ];
|
|
|
|
services.transmission = {
|
|
enable = true;
|
|
credentialsFile = pkgs.writeText "credentials" config.secrets.transmissionCredFile;
|
|
openPeerPorts = true;
|
|
settings.rpc-authentication-required = true;
|
|
};
|
|
}
|