diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 11:16:53 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 11:16:53 +0100 |
commit | 3d313eb73640dc2782688f511dab7a70c7df20d0 (patch) | |
tree | 3e563cdd87a1d537bbc8ee797142514c9f781c67 /README.md | |
parent | 0cc815efb58572c9294a271293de815f2c711ed8 (diff) |
recommend pulling latest repo from Github in README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,7 +5,8 @@ $ cat /etc/nixos/configuration.nix { config, pkgs, ... }: let - ethNix = import /home/eth/src/nix; + ethNixLocal = import /home/eth/src/nix; + ethNix = import ( builtins.fetchGit { url = "https://github.com/ethulhu/nix"; } ); { imports = [ ./hardware-configuration.nix |