From f48badb047f57540691eea188f3ae03c6555fc44 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 4 Jan 2024 22:49:08 -0600 Subject: [PATCH] Add acpi_call kernel module for touch-after-suspend-fix hack --- nixos/thablet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/thablet.nix b/nixos/thablet.nix index 1de0865..b357b12 100644 --- a/nixos/thablet.nix +++ b/nixos/thablet.nix @@ -86,7 +86,7 @@ boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"]; boot.initrd.kernelModules = []; - boot.kernelModules = ["kvm-intel"]; + boot.kernelModules = ["kvm-intel" "acpi_call"]; boot.extraModulePackages = with config.boot.kernelPackages; [acpi_call]; networking.useDHCP = lib.mkDefault true;