1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00
Mirror of NixOS-hardware
Go to file
2017-12-24 00:57:35 +00:00
acer treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
airis/n990 treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
apple/macbook-pro treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
asus treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
audio-gd audio-gd/compass2: init 2016-02-08 18:50:09 +03:00
dell/xps/15-9550 treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
inversepath/usbarmory treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
lenovo thinkpad: enable tp_smapi on all ThinkPads 2017-12-24 00:57:35 +00:00
lib new kernelAtleast option at lib/kernel-version.nix 2016-02-26 11:12:17 +01:00
microsoft treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
raspberry-pi/2 treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
samsung/np900x3c treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
supermicro treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00
.gitignore Add .gitignore adapted from NixPkgs 2016-10-20 14:28:23 -04:00
README.org treewide: modules -> profiles, separate dirs, list in README (#29) 2017-12-22 17:17:00 +00:00

NixOS profiles covering hardware quirks.

Add a new channel:

$ sudo nix-channel --add https://github.com/NixOS/nixos-hardware/archive/master.tar.gz nixos-hardware
$ sudo nix-channel --update nixos-hardware

Then add an appropriate profile path to imports in /etc/nixos/configuration.nix. Currently available profiles:

Model Path
Acer Aspire 4810T <nixos-hardware/acer/aspire/4810t>
Acer C720 <nixos-hardware/acer/c720>
Airis N990 <nixos-hardware/airis/n990>
Apple MacBook Pro 10,1 <nixos-hardware/apple/macbook-pro/10-1>
Apple MacBook Pro 12,1 <nixos-hardware/apple/macbook-pro/12-1>
Dell XPS 15 9550 <nixos-hardware/dell/xps/15-9550>
Inverse Path USB armory <nixos-hardware/inversepath/usbarmory>
Lenovo IdeaPad Z510 <nixos-hardware/lenovo/ideapad/z510>
Lenovo ThinkPad T410 <nixos-hardware/lenovo/thinkpad/t410>
Lenovo ThinkPad T440p <nixos-hardware/lenovo/thinkpad/t440p>
Lenovo ThinkPad T460s <nixos-hardware/lenovo/thinkpad/t460s>
Lenovo ThinkPad X140e <nixos-hardware/lenovo/thinkpad/x140e>
Lenovo ThinkPad X220 <nixos-hardware/lenovo/thinkpad/x220>
Microsoft Surface Pro 3 <nixos-hardware/microsoft/surface-pro/3>
Raspberry Pi 2 <nixos-hardware/raspberry-pi/2>
Samsung Series 9 NP900X3C <nixos-hardware/samsung/np900x3c>
Supermicro A1SRi-2758F <nixos-hardware/supermicro/a1sri-2758f>
Supermicro X10SLL-F <nixos-hardware/supermicro/x10sll-f>

For example, to enable ThinkPad X220 profile, your imports should look like:

imports = [ <nixos-hardware/lenovo/thinkpad/x220> ./hardware-configuration.nix ];

Profiles should favor usability and stability, so performance hacks should be activated by an additional NixOS option or conservative and performance configs can be declared in seperate profiles.

Because profiles can only be tested with the appropriate hardware, quality assurance is up to you.

Simple tips and tricks

Disable PC speaker

boot.blacklistedKernelModules = [ "pcspkr" ];