legion go: add acpi_call

This commit is contained in:
Aly Raffauf 2024-10-13 16:51:47 -04:00
parent ccb69fe2b3
commit a4faaf0c66
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,6 @@
{ {
config, config,
lib, lib,
pkgs,
self, self,
... ...
}: { }: {

View file

@ -1,4 +1,5 @@
{ {
config,
lib, lib,
pkgs, pkgs,
self, self,
@ -13,7 +14,7 @@
boot = { boot = {
initrd.availableKernelModules = ["nvme" "sdhci_pci" "thunderbolt" "usb_storage" "usbhid" "xhci_pci"]; initrd.availableKernelModules = ["nvme" "sdhci_pci" "thunderbolt" "usb_storage" "usbhid" "xhci_pci"];
# extraModulePackages = with config.boot.kernelPackages; [lenovo-legion-module]; extraModulePackages = with config.boot.kernelPackages; [acpi_call];
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
}; };