11 lines
165 B
Nix
11 lines
165 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# https://mynixos.com/nixpkgs/options/services.transmission
|
|
|
|
|
|
services.transmission {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
}
|