about summary refs log tree commit diff
path: root/nixos/tests/buildkite-agents.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-07-28 22:27:17 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-01 10:12:12 +0000
commiteb03402e28f72690887d1eab28440d9bd193f233 (patch)
treea4bcfc331aed2c82c5790fba0ba7e909e2899af1 /nixos/tests/buildkite-agents.nix
parenta282d365927e4ddb1463eb7a432829e0033a8248 (diff)
nixos/tests/buildkite-agents.nix: remove overuses of `with`
Diffstat (limited to 'nixos/tests/buildkite-agents.nix')
-rw-r--r--nixos/tests/buildkite-agents.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/nixos/tests/buildkite-agents.nix b/nixos/tests/buildkite-agents.nix
index 2c5593323e873..a5abfdb5e2e5d 100644
--- a/nixos/tests/buildkite-agents.nix
+++ b/nixos/tests/buildkite-agents.nix
@@ -1,10 +1,8 @@
-import ./make-test-python.nix ({ pkgs, ... }:
+import ./make-test-python.nix ({ lib, pkgs, ... }:
 
 {
   name = "buildkite-agent";
-  meta = with pkgs.lib.maintainers; {
-    maintainers = [ flokli ];
-  };
+  meta.maintainers = with lib.maintainers; [ flokli ];
 
   nodes.machine = { pkgs, ... }: {
     services.buildkite-agents = {