From da46fc7eca43601f6a1cb2b773aeb534dfc207e6 Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Tue, 27 Jan 2026 01:20:49 +0100 Subject: [PATCH] allow touching efi vars --- .../drivebystation-nix/hardware/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix b/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix index 55aef72..6ef6cae 100644 --- a/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix +++ b/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix @@ -16,7 +16,7 @@ hardware.enableRedistributableFirmware = true; # boot.kernelPackages = pkgs.linuxKernel.packages.linux_xanmod_latest; # boot.kernelPackages = pkgs.linuxPackages; - + boot.loader.efi.canTouchEfiVariables = true; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.kernelModules = [ "kvm-amd" "r8125" "4vl2loopback" ]; boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback r8125 ];