mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
16 lines
327 B
Nix
16 lines
327 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../common/cpu/intel
|
||
|
../../../common/pc/laptop
|
||
|
../../../common/pc/laptop/ssd
|
||
|
];
|
||
|
|
||
|
# The touchpad uses I²C, so PS/2 is unnecessary
|
||
|
boot.blacklistedKernelModules = [ "psmouse" ];
|
||
|
|
||
|
# Recommended in NixOS/nixos-hardware#127
|
||
|
services.thermald.enable = lib.mkDefault true;
|
||
|
}
|