From 98f50648847d0118359baecda8cdc9feda4bdffd Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sun, 30 Apr 2023 11:26:18 -0300 Subject: [PATCH] nixos/tests/nzbhydra2.nix: get rid of `with lib` --- nixos/tests/nzbhydra2.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nixos/tests/nzbhydra2.nix b/nixos/tests/nzbhydra2.nix index c82c756c3a1c..e1d528cd9520 100644 --- a/nixos/tests/nzbhydra2.nix +++ b/nixos/tests/nzbhydra2.nix @@ -1,10 +1,7 @@ import ./make-test-python.nix ({ lib, ... }: - - with lib; - { name = "nzbhydra2"; - meta.maintainers = with maintainers; [ jamiemagee ]; + meta.maintainers = with lib.maintainers; [ jamiemagee ]; nodes.machine = { pkgs, ... }: { services.nzbhydra2.enable = true; };