From 32d5670b2085f13786c9c2d4a286c85c57c713da Mon Sep 17 00:00:00 2001 From: Agatha Lovelace Date: Sat, 18 Feb 2023 15:37:53 +0100 Subject: [PATCH] Enable qemu guest agent --- hosts/bloodletting/hardware-configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/bloodletting/hardware-configuration.nix b/hosts/bloodletting/hardware-configuration.nix index d64ed4b..6acf5cc 100644 --- a/hosts/bloodletting/hardware-configuration.nix +++ b/hosts/bloodletting/hardware-configuration.nix @@ -27,6 +27,8 @@ networking.useDHCP = lib.mkDefault true; # networking.interfaces.ens18.useDHCP = lib.mkDefault true; + services.qemuGuest.enable = true; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;