summaryrefslogtreecommitdiff
path: root/README.md
blob: 5838da7b3950a46eb0376fd9b7fef11490caa74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Eth's Misc Nix Mix

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

let
  ethNixLocal = import /home/eth/src/nix;
  ethNixRemote = import ( builtins.fetchGit { url = "https://github.com/ethulhu/nix"; } );

  ethNix = ethNixRemote;

in {
  imports = [
    ./hardware-configuration.nix
    ethNix.modules
  ];

  nixpkgs.overlays = [
    ethNix.overlays;
  ];

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