From e4e3fbe8aa4f3a610de91c047b3ea71debeb104e Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sun, 31 Oct 2021 15:35:02 +0100 Subject: [PATCH] nixos/tests/ghostunnel.nix: Fix eval as invoked by release.nix Worked fine with nixosTests. --- nixos/tests/ghostunnel.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nixos/tests/ghostunnel.nix b/nixos/tests/ghostunnel.nix index a82cff8082b7..8bea64854021 100644 --- a/nixos/tests/ghostunnel.nix +++ b/nixos/tests/ghostunnel.nix @@ -1,5 +1,4 @@ -{ pkgs, ... }: import ./make-test-python.nix { - +import ./make-test-python.nix ({ pkgs, ... }: { nodes = { backend = { pkgs, ... }: { services.nginx.enable = true; @@ -101,4 +100,4 @@ meta.maintainers = with pkgs.lib.maintainers; [ roberth ]; -} +})