nixos-hardware/README.org

54 lines
3.0 KiB
Org Mode
Raw Permalink Normal View History

NixOS profiles covering hardware quirks.
2017-12-24 20:34:39 +01:00
** Setup
Add and update ~nixos-hardware~ channel:
: $ sudo nix-channel --add https://github.com/NixOS/nixos-hardware/archive/master.tar.gz nixos-hardware
: $ sudo nix-channel --update nixos-hardware
2017-12-24 20:34:39 +01:00
Then import an appropriate profile path from the table below. For example, to
enable ThinkPad X220 profile, your ~imports~ in ~/etc/nixos/configuration.nix~
should look like:
: imports = [ <nixos-hardware/lenovo/thinkpad/x220> ./hardware-configuration.nix ];
2018-04-06 08:54:39 +02:00
Starting with nix 2.0 it is also possible to use `builtins.fetchGit` to fetch this repository:
: imports = [
: (builtins.fetchGit {
: url = "https://github.com/NixOS/nixos-hardware";
: # revision here is optional, if not given, nix will fetch updates automatically
: rev = "a5fa2cc1ae6a1002962cf71fc23fbd533db412be";
: } + "/lenovo/thinkpad/x250")
: ./hardware-configuration.nix
: ];
2017-12-24 20:34:39 +01:00
** Profiles
2017-12-24 20:34:39 +01:00
|---------------------------+--------------------------------------------|
| Model | Path |
|---------------------------+--------------------------------------------|
2017-12-25 14:24:32 +01:00
| [[file:acer/aspire/4810t][Acer Aspire 4810T]] | ~<nixos-hardware/acer/aspire/4810t>~ |
| Airis N990 | ~<nixos-hardware/airis/n990>~ |
2017-12-25 14:30:03 +01:00
| Apple MacBook Air 4,X | ~<nixos-hardware/apple/macbook-air/4>~ |
| Apple MacBook Air 6,X | ~<nixos-hardware/apple/macbook-air/6>~ |
2017-12-25 14:24:32 +01:00
| [[file:apple/macbook-pro/10-1][Apple MacBook Pro 10,1]] | ~<nixos-hardware/apple/macbook-pro/10-1>~ |
| Apple MacBook Pro 12,1 | ~<nixos-hardware/apple/macbook-pro/12-1>~ |
2017-12-25 14:24:32 +01:00
| [[file:dell/xps/15-9550][Dell XPS 15 9550]] | ~<nixos-hardware/dell/xps/15-9550>~ |
| [[file:inversepath/usbarmory][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>~ |
2017-12-26 22:56:05 +01:00
| Lenovo ThinkPad X230 | ~<nixos-hardware/lenovo/thinkpad/x230>~ |
| Lenovo ThinkPad X250 | ~<nixos-hardware/lenovo/thinkpad/x250>~ |
2017-12-25 14:24:32 +01:00
| [[file:microsoft/surface-pro/3][Microsoft Surface Pro 3]] | ~<nixos-hardware/microsoft/surface-pro/3>~ |
| [[file:raspberry-pi/2][Raspberry Pi 2]] | ~<nixos-hardware/raspberry-pi/2>~ |
| [[file:samsung/np900x3c][Samsung Series 9 NP900X3C]] | ~<nixos-hardware/samsung/np900x3c>~ |
| Supermicro A1SRi-2758F | ~<nixos-hardware/supermicro/a1sri-2758f>~ |
| Supermicro X10SLL-F | ~<nixos-hardware/supermicro/x10sll-f>~ |
2017-12-24 20:34:39 +01:00
|---------------------------+--------------------------------------------|