summaryrefslogtreecommitdiff
path: root/README.md
blob: 5fd624763b0ac905fb1ebba48a3921837c9a0c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Eth's Misc Nix Mix

```sh
$ cat /etc/nixos/configuration.nix
{ config, pkgs, ... }:

let
  ethNixLocal = import /home/eth/src/nix;
  ethNix = import ( builtins.fetchGit { url = "https://github.com/ethulhu/nix"; } );
{
  imports = [
    ./hardware-configuration.nix
    ethNix.modules
  ];

  eth.keyboard.enable = true;
}
```