hardware.steamdeck: enable touch screen support

This commit is contained in:
2024-08-01 12:00:17 +08:00
parent f5bf3bff8f
commit ae61dfb1d9
2 changed files with 10 additions and 0 deletions

View File

@@ -50,5 +50,10 @@ inputs:
};
bugs = [ "xmunet" ];
};
specialisation.debug.configuration =
{
nixos.system.initrd.unl0kr = inputs.lib.mkForce null;
system.nixos.tags = [ "no-unl0kr" ];
};
};
}

View File

@@ -14,5 +14,10 @@ inputs:
};
services.displayManager.sddm.enable = false;
systemd.services.display-manager.enable = false;
boot.initrd.kernelModules =
[
"hid_generic" "hid_multitouch" "i2c_designware_core" "i2c_designware_platform" "i2c_hid_acpi" "evdev"
"i2c_hid_api"
];
};
}