diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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; } ``` |