From 6618ec06ccffb5750019735b5a81a6d277b007c5 Mon Sep 17 00:00:00 2001 From: Jacek Galowicz Date: Thu, 12 Sep 2024 20:25:49 +0200 Subject: [PATCH] nixosTests.bittorrent: Fix pkgs scope --- nixos/tests/bittorrent.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/bittorrent.nix b/nixos/tests/bittorrent.nix index 565e37cf0e56..72e7e5152c06 100644 --- a/nixos/tests/bittorrent.nix +++ b/nixos/tests/bittorrent.nix @@ -20,7 +20,7 @@ let externalTrackerAddress = "80.100.100.3"; download-dir = "/var/lib/transmission/Downloads"; - transmissionConfig = { ... }: { + transmissionConfig = { pkgs, ... }: { environment.systemPackages = [ pkgs.transmission_3 ]; services.transmission = { enable = true;