mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
20 lines
395 B
Nix
20 lines
395 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../../../common/cpu/intel/tiger-lake
|
|
../../../common/pc/laptop
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
# Essential Firmware
|
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
|
|
|
# Cooling Management
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
# Touchpad
|
|
services.libinput.touchpad = {
|
|
tapping = true;
|
|
tappingDragLock = true;
|
|
};
|
|
}
|