From 9f73571f55a2a6466a67b449d364333da822a33a Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 31 Mar 2026 15:33:23 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20restore=20bootloader=20config=20in=20pha?= =?UTF-8?q?ntom-ship=20hardware=20nix=20=F0=9F=A5=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Accidentally stripped systemd-boot config when cleaning up duplicate fileSystems entries. --- nixos/hosts/phantom-ship-hardware.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/hosts/phantom-ship-hardware.nix b/nixos/hosts/phantom-ship-hardware.nix index 36ac938..f47a34b 100644 --- a/nixos/hosts/phantom-ship-hardware.nix +++ b/nixos/hosts/phantom-ship-hardware.nix @@ -3,6 +3,9 @@ { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ];