nixos-config/1systems/tsp/hardware.nix

11 lines
305 B
Nix
Raw Normal View History

2021-03-12 20:12:04 +01:00
{ lib, ... }:
{
imports = [
# laptop is an acer aspire, but close enough i'd say
2023-06-13 00:30:42 +02:00
../../2configs/hw/tp-x2x0.nix
2021-03-12 20:12:04 +01:00
];
# the laptop only has the touchpad
services.xserver.synaptics.additionalOptions = lib.mkForce ''Option "TouchpadOff" "0"'';
2023-06-13 00:30:42 +02:00
hardware.enableRedistributableFirmware = true;
2021-03-12 20:12:04 +01:00
}