From 08f8ee3dd6a0a67ae3667524fd279f7b02993f65 Mon Sep 17 00:00:00 2001 From: Ethel Morgan Date: Mon, 18 May 2020 15:55:55 +0100 Subject: add nixpkgs overlays to README.md --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'README.md') 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; } ``` -- cgit v1.2.3