nixos-hardware/lenovo/thinkpad/x13/default.nix

13 lines
340 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ ... }: {
2021-05-01 08:14:51 +02:00
# Reference to hardware: https://certification.ubuntu.com/hardware/202004-27844
imports = [
../.
../../../common/cpu/intel
../../../common/pc/laptop/acpi_call.nix
../../../common/pc/laptop/ssd
];
# Somehow psmouse does not load automatically on boot for me
2021-12-26 10:15:40 +01:00
boot.initrd.kernelModules = [ "psmouse" ];
2021-05-01 08:14:51 +02:00
}