From b87b912176c310395c14104abac74bb729dce54d Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 3 Jun 2024 00:31:35 -0700 Subject: [PATCH] Prefer modulesPath over --- lib/test-nixos-rebuild-switch-config.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/test-nixos-rebuild-switch-config.nix b/lib/test-nixos-rebuild-switch-config.nix index a31a39e..36928b2 100644 --- a/lib/test-nixos-rebuild-switch-config.nix +++ b/lib/test-nixos-rebuild-switch-config.nix @@ -1,9 +1,9 @@ -{ lib, pkgs, ... }: { +{ lib, pkgs, modulesPath, ... }: { imports = [ - - - - + (modulesPath + "/installer/cd-dvd/channel.nix") + (modulesPath + "/profiles/base.nix") + (modulesPath + "/testing/test-instrumentation.nix") + (modulesPath + "/virtualisation/qemu-vm.nix") ]; nix.binaryCaches = lib.mkForce [ ]; -- 2.44.1