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; |
||
---|---|---|
acer | ||
airis | ||
apple | ||
asus | ||
audio-gd | ||
dell | ||
inversepath/usbarmory | ||
lenovo | ||
lib | ||
microsoft | ||
raspberry_pi | ||
samsung | ||
supermicro | ||
.gitignore | ||
README.md |
A collection of NixOS modules covering hardware quirks.
Usage
The simplest way to use this repo for now is to clone locally and include by path:
{ config, pkgs, ... }:
{
imports =
[ /home/user/nixos-hardware/acme/thunkpad-2000.nix ];
}
Modules should favor usability and stability, so performance hacks should be activated by an additional a NixOS option or conservative and performance configs can be declared in seperate modules.
Because modules can only be tested with the appropriate hardware, quality assurance is up to you.
Simple tips and tricks
Disable PC speaker
boot.blacklistedKernelModules = [ "pcspkr" ];