From f433890eff88089b53c9427ffdb4e5d59b377d21 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Mon, 15 Nov 2021 10:03:59 -0500 Subject: [PATCH] formatting --- nixos/hardware-configuration.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix index 09d491e..16502d4 100644 --- a/nixos/hardware-configuration.nix +++ b/nixos/hardware-configuration.nix @@ -8,7 +8,17 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" "cryptd" ]; + boot.initrd.availableKernelModules = [ + "nvme" + "vfat" + "xhci_pci" + "usbhid" + "usb_storage" + "sd_mod" + "sdhci_pci" + "cryptd" + ]; + boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ];