summaryrefslogtreecommitdiffstats
path: root/1systems/tsp/hardware.nix
blob: ca20a1dd2247bdd7b0e87480a04bf7154d2989c5 (plain)
1
2
3
4
5
6
7
8
9
10
{ lib, ... }:
{
  imports = [
    # laptop is an acer aspire, but close enough i'd say
    ../../2configs/hw/tp-x2x0.nix
  ];
  # the laptop only has the touchpad
  services.xserver.synaptics.additionalOptions = lib.mkForce ''Option "TouchpadOff" "0"'';
  hardware.enableRedistributableFirmware = true;
}