mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
14 lines
No EOL
300 B
Nix
14 lines
No EOL
300 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.transmission = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
settings = {
|
|
download-dir = "/mnt/DATA/Downloads";
|
|
rpc-bind-address = "0.0.0.0";
|
|
rpc-host-whitelist-enabled = false;
|
|
rpc-whitelist-enabled = false;
|
|
};
|
|
};
|
|
} |