From f79cae38150947c997ce56607edead105ee9aa9f Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 3 Dec 2024 09:23:09 +0100 Subject: [PATCH] hosts/anastacia: update hardware-configuration to include system --- hosts/anastacia/hardware-configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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"; }