From 786571ebf952bd84c81800194fc97ace06ea2b3d Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Mon, 19 Aug 2024 11:46:17 -0400 Subject: [PATCH] petalburg: install acpi_call --- hosts/petalburg/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts/petalburg/default.nix b/hosts/petalburg/default.nix index fb30c5ad..84adc1eb 100644 --- a/hosts/petalburg/default.nix +++ b/hosts/petalburg/default.nix @@ -13,9 +13,13 @@ self.inputs.nixhw.nixosModules.lenovo-yoga-9i-intel-13th ]; - boot.loader = { - efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + boot = { + extraModulePackages = with config.boot.kernelPackages; [acpi_call]; + + loader = { + efi.canTouchEfiVariables = true; + systemd-boot.enable = true; + }; }; environment.variables.GDK_SCALE = "2";