From 05bf386e51c5a9331e5e1d5a5957b8dad2458a6d Mon Sep 17 00:00:00 2001 From: soraefir Date: Sun, 14 Apr 2024 21:25:20 +0200 Subject: [PATCH] Fix --- systems/sandbox/hardware.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/sandbox/hardware.nix b/systems/sandbox/hardware.nix index f21a799..5f929b6 100644 --- a/systems/sandbox/hardware.nix +++ b/systems/sandbox/hardware.nix @@ -1,4 +1,4 @@ -{ modulesPath, ... }: { +{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.kernelPackages = pkgs.linuxPackages_latest; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";