From 7be8a4c5e6e2d6b6a99e6646f1c70dbc08e381d8 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 26 Mar 2026 08:48:53 -0700 Subject: [PATCH] orion/rift -> systemd initrd Allows for FIDO2 LUKS unlock. --- hw/orion/hardware-configuration.nix | 1 + hw/rift/hardware-configuration.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/hw/orion/hardware-configuration.nix b/hw/orion/hardware-configuration.nix index a7ea437..526c737 100644 --- a/hw/orion/hardware-configuration.nix +++ b/hw/orion/hardware-configuration.nix @@ -10,6 +10,7 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; + boot.initrd.systemd.enable = true; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; diff --git a/hw/rift/hardware-configuration.nix b/hw/rift/hardware-configuration.nix index 4a98e33..fbe9b52 100644 --- a/hw/rift/hardware-configuration.nix +++ b/hw/rift/hardware-configuration.nix @@ -10,6 +10,7 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; + boot.initrd.systemd.enable = true; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];