1import ./make-test-python.nix ({ lib, ... }: {
2 name = "without-nix";
3 meta = with lib.maintainers; {
4 maintainers = [ ericson2314 ];
5 };
6
7 nixpkgs.overlays = [
8 (self: super: {
9 nix = throw "don't want to use this";
10 })
11 ];
12
13 nodes.machine = { ... }: {
14 nix.enable = false;
15 };
16
17 testScript = ''
18 start_all()
19
20 machine.succeed("which which")
21 machine.fail("which nix")
22 '';
23})