nixpkgs/nixos/tests/transmission.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
604 B
Nix
Raw Normal View History

2023-09-23 11:27:17 +00:00
import ./make-test-python.nix (
{ pkgs, transmission, ... }:
{
name = "transmission";
meta = with pkgs.lib.maintainers; {
maintainers = [ coconnor ];
};
2022-03-20 23:15:30 +00:00
nodes.machine =
{ ... }:
{
imports = [ ../modules/profiles/minimal.nix ];
networking.firewall.allowedTCPPorts = [ 9091 ];
security.apparmor.enable = true;
services.transmission.enable = true;
2023-09-23 11:27:17 +00:00
services.transmission.package = transmission;
};
testScript = ''
start_all()
machine.wait_for_unit("transmission")
machine.shutdown()
'';
}
)