a6f8e4bbc0
* hardware.trackpoint.emulateWheel = true; is very biased, this module is only for ThinkPads anyway, so default value should be used * All options that should be overridable (e.g. services.tlp.enable) * Hardware profile should not pull in stuff into system environment unless it's hardware-specific (pkgs.acpi is not) * sound.mediaKeys clashes with DE, e.g. Xfce handling sound keys * Drop redundant synaptics.enable = false;
12 lines
200 B
Nix
12 lines
200 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkDefault;
|
|
in
|
|
|
|
{
|
|
hardware.trackpoint.enable = mkDefault true;
|
|
services.tlp.enable = mkDefault true;
|
|
services.xserver.libinput.enable = mkDefault true;
|
|
}
|