{ lib, ... }:
{
  imports = [
    ../../../common/gpu/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;
  };
}