11 lines
305 B
Nix
11 lines
305 B
Nix
{ 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;
|
|
}
|