summaryrefslogtreecommitdiffstats
path: root/README.md
blob: 8d70cb0926c5fcd3ee5410275928f6bfd22d1504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
A collection of NixOS modules covering hardware quirks.

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.

## Usage
The simplest way to use this repo for now is to clone locally and include by path:
``` nix
{ config, pkgs, ... }:

{
  imports =
    [ /home/user/nixos-hardware/acme/thunkpad-2000.nix ];
}
'''