From: Scott Worley Date: Mon, 3 Jun 2024 07:31:35 +0000 (-0700) Subject: Prefer modulesPath over X-Git-Url: http://git.scottworley.com/syncthing-autoregister/commitdiff_plain/b87b912176c310395c14104abac74bb729dce54d?ds=sidebyside Prefer modulesPath over --- 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 [ ];