From e1a10f99715a909c5e2404e36fefb7c44c49c75e Mon Sep 17 00:00:00 2001 From: Fiscal Velvet Poet Date: Thu, 25 May 2023 09:56:56 +1000 Subject: [PATCH] nixos: cleaner import of qemu-quest module --- hardware/linode_vm.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hardware/linode_vm.nix b/hardware/linode_vm.nix index cdedb20..38719ef 100644 --- a/hardware/linode_vm.nix +++ b/hardware/linode_vm.nix @@ -3,11 +3,12 @@ config, pkgs, lib, + modulesPath, ... }: { imports = [ # Import the NixOS Qemu guest settings - + (modulesPath + "/profiles/qemu-guest.nix") ]; boot.initrd.availableKernelModules = ["virtio_pci" "ahci" "sd_mod"];