diff --git a/nix/testVm/vm.nix b/nix/testVm/vm.nix index 0c61aa8..1b07ec5 100644 --- a/nix/testVm/vm.nix +++ b/nix/testVm/vm.nix @@ -6,7 +6,7 @@ }: { imports = [ -# (modulesPath + "/virtualisation/qemu-vm.nix") + (modulesPath + "/virtualisation/qemu-vm.nix") ]; virtualisation.vmVariant = { @@ -59,4 +59,13 @@ font = "${pkgs.cozette}/share/consolefonts/cozette6x13.psfu"; packages = with pkgs; [ cozette ]; }; + + system = { + disableInstallerTools = true; + copySystemConfiguration = false; + includeBuildDependencies = false; + tools.nixos-version.enable = true; # Useful... + switch.enable = false; + etc.overlay.enable = true; + }; } diff --git a/nix/tests/test-bundle-starts.nix b/nix/tests/test-bundle-starts.nix index 16134f9..b43f68f 100644 --- a/nix/tests/test-bundle-starts.nix +++ b/nix/tests/test-bundle-starts.nix @@ -7,7 +7,7 @@ }: let - sb = import ../modules/default/lib.nix; + sb = import ../lib/mkEndpoint.nix; in { name = "test-bundle-starts";