mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
24 lines
488 B
Nix
24 lines
488 B
Nix
import ./make-test-python.nix ({ pkgs, ...} : {
|
|
name = "transmission";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ coconnor ];
|
|
};
|
|
|
|
nodes.machine = { ... }: {
|
|
imports = [ ../modules/profiles/minimal.nix ];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 9091 ];
|
|
|
|
security.apparmor.enable = true;
|
|
|
|
services.transmission.enable = true;
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
start_all()
|
|
machine.wait_for_unit("transmission")
|
|
machine.shutdown()
|
|
'';
|
|
})
|