From aeaf93b9f4ed28828c89460753a2d9fb3b21a82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gaspard?= Date: Fri, 4 May 2018 15:52:33 +0200 Subject: [PATCH] Default to building with nix2 Nix is now mostly used in its version 2, so let's switch to that. --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 5a35ebe..8d7c12b 100644 --- a/shell.nix +++ b/shell.nix @@ -1,4 +1,4 @@ -{ pkgs ? import ./nix {}, useNix1 ? true }: +{ pkgs ? import ./nix {}, useNix1 ? false }: let inherit (pkgs) stdenv;