From aa88d13f258f22fc91783a84071b683d9440af2c Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Fri, 5 Aug 2022 14:08:25 -0300 Subject: [PATCH] hosts/electra: avoid kv-kvp erroring out --- hosts/electra/hardware-configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/electra/hardware-configuration.nix b/hosts/electra/hardware-configuration.nix index 4c85cb7c..be5b972d 100644 --- a/hosts/electra/hardware-configuration.nix +++ b/hosts/electra/hardware-configuration.nix @@ -10,5 +10,7 @@ networking.useDHCP = lib.mkDefault true; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + virtualisation.hypervGuest.enable = true; + systemd.services.hv-kvp.unitConfig.ConditionPathExists = [ "/dev/vmbus/hv_kvp" ]; }