1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00
nixos-hardware/lenovo/thinkpad/x13/default.nix

13 lines
353 B
Nix
Raw Normal View History

2021-05-01 08:14:51 +02:00
{ config, lib, ... }: {
# 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
}