summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5fd6247..5838da7 100644
--- a/README.md
+++ b/README.md
@@ -6,13 +6,20 @@ $ cat /etc/nixos/configuration.nix
let
ethNixLocal = import /home/eth/src/nix;
- ethNix = import ( builtins.fetchGit { url = "https://github.com/ethulhu/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;
}
```