about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md')
-rw-r--r--users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md41
1 files changed, 0 insertions, 41 deletions
diff --git a/users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md b/users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md
deleted file mode 100644
index c80892164d..0000000000
--- a/users/wpcarro/website/blog/content/english/lets-learn-nix-tutorial-reproducibility.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-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
-```