This commit is contained in:
steveej 2022-10-30 13:48:13 +01:00
parent 0473021e08
commit 429a85060d
3 changed files with 10 additions and 0 deletions

View file

@ -4,5 +4,8 @@
{ {
boot.loader.grub.efiSupport = true; boot.loader.grub.efiSupport = true;
boot.loader.grub.efiInstallAsRemovable = lib.mkForce true;
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
} }

View file

@ -11,7 +11,13 @@ let
"virtio_pci" "virtio_pci"
"virtio_ring" "virtio_ring"
"virtio" "virtio"
"scsi_mod" "scsi_mod"
"uas"
"usb_storage"
"xhci_hcd"
"xhci_pci"
]; ];
in in

View file

@ -4,4 +4,5 @@
# TASK: new device # TASK: new device
hardware.opinionatedDisk.diskId = "usb-SanDisk_Extreme_Pro_12345978EC62-0:0"; hardware.opinionatedDisk.diskId = "usb-SanDisk_Extreme_Pro_12345978EC62-0:0";
hardware.opinionatedDisk.encrypted = true; hardware.opinionatedDisk.encrypted = true;
hardware.enableRedistributableFirmware = true;
} }