Fixes to shire config

This commit is contained in:
Marko Korhonen 2024-10-05 13:48:48 +03:00
parent ef48ffc9be
commit a5ff3f78e0
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ ... }:
{
imports = [
@ -9,13 +9,13 @@
networking.hostName = "Shire";
boot = {
kernelParams = config.boot.kernelParams ++ [
kernelParams = [
"intel_idle.max_cstate=1"
];
initrd.unl0kr.enable = true;
# Does not work with unl0kr now
# https://github.com/NixOS/nixpkgs/issues/291935
plymouth.enable = false;
initrd = {
# Couldn't get unl0kr working yet
# unl0kr.enable = true;
# availableKernelModules = [ "hid-multitouch" "i2c-hid" "i2c-hid-acpi" "hid_generic" ];
};
};
}