tvl-depot/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md
William Carroll 95e761e59b Move blog into website/blog
Nest the blog work within the website directory.
2020-03-20 00:46:29 +00:00

603 B

title date draft
Lets Learn Nix: Tutorial Reproducibility 2020-03-17T18:34:58Z true

Install Nix

Link to nixos page.

The rest

Start with this...

$ mkdir ~/lets-learn-nix
$ cd ~/lets-learn-nix

...done. Copy the following and paste it into a file name shell.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...

$ nix-shell