mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-04 18:19:40 +01:00
20 lines
345 B
Nix
20 lines
345 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
hardware.trackpoint = mkDefault {
|
|
enable = true;
|
|
emulateWheel = true;
|
|
};
|
|
|
|
hardware.enableRedistributableFirmware = mkDefault true;
|
|
services.tlp.enable = true;
|
|
|
|
services.xserver = {
|
|
synaptics.enable = false;
|
|
libinput.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.acpi ];
|
|
}
|