From 25a8ea21ad46449d9dfee17e61aae561f4d6680c Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Wed, 27 Nov 2019 19:40:58 +0100 Subject: [PATCH] Fix storage volume mounting on borg2-01 --- configuration/hardware-configurations/machine-borg2-01.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/hardware-configurations/machine-borg2-01.nix b/configuration/hardware-configurations/machine-borg2-01.nix index 8c54e68..8d5b9f5 100644 --- a/configuration/hardware-configurations/machine-borg2-01.nix +++ b/configuration/hardware-configurations/machine-borg2-01.nix @@ -6,7 +6,7 @@ { imports = [ ]; - boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" "virtio_scsi" ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; @@ -25,5 +25,5 @@ ]; nix.maxJobs = lib.mkDefault 1; - virtualisation.hypervGuest.enable = true; +# virtualisation.hypervGuest.enable = true; }