From 0ecbdc3d100043d6f108d7635dcd8b98beda63dc Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Tue, 21 Nov 2023 15:05:37 +0100 Subject: [PATCH] lib needed up there --- nixos/queen/hardware-configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nixos/queen/hardware-configuration.nix b/nixos/queen/hardware-configuration.nix index 1befada..52ea2b5 100644 --- a/nixos/queen/hardware-configuration.nix +++ b/nixos/queen/hardware-configuration.nix @@ -1,4 +1,10 @@ -{modulesPath, ...}: { +{ + config, + lib, + pkgs, + modulesPath, + ... +}: { imports = [(modulesPath + "/profiles/qemu-guest.nix")]; boot.loader.grub.device = "/dev/sda"; boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"];