From d9c10bfe7a4c1d1ad823be5517455412154adeda Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 26 Oct 2024 21:21:36 +0300 Subject: [PATCH] Enable unl0kr for Shire --- hosts/Shire/configuration.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/hosts/Shire/configuration.nix b/hosts/Shire/configuration.nix index b7c63027..fbb8205c 100644 --- a/hosts/Shire/configuration.nix +++ b/hosts/Shire/configuration.nix @@ -1,4 +1,4 @@ -{ ... }: +{ lib, ... }: { imports = [ @@ -12,10 +12,16 @@ kernelParams = [ "intel_idle.max_cstate=1" ]; + plymouth.enable = lib.mkForce false; initrd = { - # Couldn't get unl0kr working yet - # unl0kr.enable = true; - # availableKernelModules = [ "hid-multitouch" "i2c-hid" "i2c-hid-acpi" "hid_generic" ]; + unl0kr.enable = true; + availableKernelModules = [ + "hid-multitouch" + "i2c-hid" + "i2c-hid-acpi" + "hid_generic" + "evdev" + ]; }; }; }