diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-20T00·46+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-20T00·46+0000 |
commit | 95e761e59b739c1cd702f70757225d7d01325284 (patch) | |
tree | 86628cc050ff09fa8b629fd5889b054010daa956 /website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md | |
parent | 54d1a0048a7101dc51bbea49feed7cded5031b17 (diff) |
Move blog into website/blog
Nest the blog work within the website directory.
Diffstat (limited to 'website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md')
-rw-r--r-- | website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md b/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md new file mode 100644 index 000000000000..c80892164dbe --- /dev/null +++ b/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md @@ -0,0 +1,41 @@ +--- +title: "Lets Learn Nix: Tutorial Reproducibility" +date: 2020-03-17T18:34:58Z +draft: true +--- + +## Install Nix + +Link to nixos page. + +## The rest + +Start with this... + +```shell +$ mkdir ~/lets-learn-nix +$ cd ~/lets-learn-nix +``` + +...done. Copy the following and paste it into a file name `shell.nix`. + +```nix +# file: shell.nix +let + pkgs = import (builtins.fetchGit { + url = "https://github.com/NixOS/nixpkgs-channels"; + ref = "refs/heads/nixos-19.09"; + }) {} +in pkgs.mkShell { + buildInputs = with pkgs; [ + git + ]; + NIX_PATH = "nixpkgs=${pkgs}"; +}; +``` + +...then... + +```shell +$ nix-shell +``` |