nixos-hardware/dell/inspiron/5509/default.nix

22 lines
440 B
Nix
Raw Normal View History

2021-12-11 17:07:01 +01:00
{ lib, ... }:
{
imports = [
../../../common/cpu/intel
2024-02-20 13:18:11 +01:00
../../../common/gpu/intel
2021-12-11 17:07:01 +01:00
../../../common/pc/laptop
../../../common/pc/ssd
];
# Essential Firmware
hardware.enableRedistributableFirmware = lib.mkDefault true;
# Cooling Management
services.thermald.enable = lib.mkDefault true;
2021-12-11 17:38:12 +01:00
# Touchpad
2021-12-11 17:07:01 +01:00
services.xserver = {
libinput.touchpad.tapping = true;
libinput.touchpad.tappingDragLock = true;
};
}