diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-17T22·42+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-17T22·42+0000 |
commit | 79b5fce68a6e4c0a190f69b319b8e4f46ede3f91 (patch) | |
tree | 5894c754f45b4224d1c39fec5dbf97766ab09198 /blog/content/english/lets-learn-nix-tutorial-reproducibility.md | |
parent | 209fdf5726a7e80ad4b99e2a6505b6522094a774 (diff) |
Scatter blog post ideas for "Let's Learn Nix"
I may not use any of these. I'm just scrawling notes as blog posts to see if anything sticks.
Diffstat (limited to 'blog/content/english/lets-learn-nix-tutorial-reproducibility.md')
-rw-r--r-- | blog/content/english/lets-learn-nix-tutorial-reproducibility.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/blog/content/english/lets-learn-nix-tutorial-reproducibility.md b/blog/content/english/lets-learn-nix-tutorial-reproducibility.md new file mode 100644 index 000000000000..c80892164dbe --- /dev/null +++ b/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 +``` |