diff --git a/hosts/anastacia/hardware-configuration.nix b/hosts/anastacia/hardware-configuration.nix index 702b3d0..32155b3 100644 --- a/hosts/anastacia/hardware-configuration.nix +++ b/hosts/anastacia/hardware-configuration.nix @@ -1,4 +1,8 @@ -{modulesPath, ...}: { +{ + lib, + modulesPath, + ... +}: { imports = [(modulesPath + "/profiles/qemu-guest.nix")]; boot = { loader.grub.device = "/dev/sda"; @@ -9,4 +13,6 @@ device = "/dev/sda1"; fsType = "ext4"; }; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }