-{ lib, pkgs, ... }: {
+{ lib, pkgs, modulesPath, ... }: {
imports = [
- <nixos/nixos/modules/installer/cd-dvd/channel.nix>
- <nixos/nixos/modules/profiles/base.nix>
- <nixos/nixos/modules/testing/test-instrumentation.nix>
- <nixos/nixos/modules/virtualisation/qemu-vm.nix>
+ (modulesPath + "/installer/cd-dvd/channel.nix")
+ (modulesPath + "/profiles/base.nix")
+ (modulesPath + "/testing/test-instrumentation.nix")
+ (modulesPath + "/virtualisation/qemu-vm.nix")
];
nix.binaryCaches = lib.mkForce [ ];