about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md
blob: c80892164dbeef1e670d343ef007807864bf87e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
```