Mirror of NixOS-hardware
Go to file
John Ericson f51cdd0535 Add .gitignore adapted from NixPkgs 2016-10-20 14:28:23 -04:00
acer import https://nixos.org/wiki/Acer_C720_Chromebook 2016-02-26 12:03:28 +01:00
airis import https://nixos.org/wiki/Airis_N990 2016-02-26 12:06:00 +01:00
asus import https://nixos.org/wiki/ASUS_M60J-JX041V 2016-02-26 11:52:45 +01:00
audio-gd audio-gd/compass2: init 2016-02-08 18:50:09 +03:00
dell s/gummiboot/systemd-boot -- fixes warnings on unstable 2016-06-03 16:07:56 -07:00
inversepath/usbarmory usbarmory: move to /inversepath, host support 2016-02-23 19:23:55 +01:00
lenovo add Lenovo IdeaPad Z510 with suspend fix (#18) 2016-09-21 11:33:54 +02:00
lib new kernelAtleast option at lib/kernel-version.nix 2016-02-26 11:12:17 +01:00
microsoft import https://nixos.org/wiki/Microsoft_Surface_Pro_3 2016-02-26 11:42:57 +01:00
raspberry_pi import https://nixos.org/wiki/Raspberry_Pi_2 2016-02-26 11:29:48 +01:00
samsung import https://nixos.org/wiki/Samsung_NP900X3c 2016-02-26 11:38:21 +01:00
supermicro buggy drivers fixed on a1sri-2758f 2016-04-08 16:27:52 +02:00
.gitignore Add .gitignore adapted from NixPkgs 2016-10-20 14:28:23 -04:00
README.md Add tips and tricks section to README 2016-02-26 11:46:42 +01:00

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" ];