diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-04-05 12:31:44 +0200 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-04-05 12:35:51 +0200 |
| commit | 45ec0396b4d56798f39254e9ef31b9c144e681fd (patch) | |
| tree | 201f299734e1aa2b4ebe46c8cc62fb2f6c452c2d | |
| parent | 9ebf173393c7ac344b99f8cf6776cdab04319ffa (diff) | |
add crypto modules to initrd
| -rw-r--r-- | nixos/hosts/icetea-dispenser/hardware-configuration.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/hosts/icetea-dispenser/hardware-configuration.nix b/nixos/hosts/icetea-dispenser/hardware-configuration.nix index bab6718..7ae80aa 100644 --- a/nixos/hosts/icetea-dispenser/hardware-configuration.nix +++ b/nixos/hosts/icetea-dispenser/hardware-configuration.nix @@ -9,7 +9,7 @@ ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; - boot.initrd.kernelModules = [ ]; + boot.initrd.kernelModules = [ "aesni_intel" "cryptd" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; boot.supportedFilesystems = [ "ntfs" "btrfs" "vfat" ]; @@ -70,7 +70,6 @@ menuentry 'UEFI Firmware' $menuentry_id_option 'uefi-firmware' { swapDevices = [ { device = "/dev/disk/by-uuid/f1dfc6a1-55f3-4148-9f1d-2a998c3b3168"; } - { device = "/dev/disk/by-uuid/003a819a-e06e-45df-bef6-b3702c2ddb48"; } ]; # Thunderbolt |
