about summary refs log tree commit diff
path: root/nixos/tests/without-nix.nix
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-03-18 01:27:04 +0100
committerNaïm Favier <n@monade.li>2022-03-18 02:44:11 +0100
commitca8c877f8cd1f9b84e8aa57741aa5cd60a3a2ba3 (patch)
tree9908d4c8cd984dbdaf355c320382b51e92b47580 /nixos/tests/without-nix.nix
parent79a234567c01399c5f1ae1d0b60ac84d12075b3b (diff)
nixos/tests: fix some evaluation errors
Fixes errors caught by "nixos/testing: restrict arguments to makeTest" as
well as some unrelated errors and warnings.
Diffstat (limited to 'nixos/tests/without-nix.nix')
-rw-r--r--nixos/tests/without-nix.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/tests/without-nix.nix b/nixos/tests/without-nix.nix
index 2fc00b04144f9..93f1d01860476 100644
--- a/nixos/tests/without-nix.nix
+++ b/nixos/tests/without-nix.nix
@@ -4,12 +4,6 @@ import ./make-test-python.nix ({ lib, ... }: {
     maintainers = [ ericson2314 ];
   };
 
-  nixpkgs.overlays = [
-    (self: super: {
-      nix = throw "don't want to use this";
-    })
-  ];
-
   nodes.machine = { ... }: {
     nix.enable = false;
   };