From 098e72e0a1a87dbba48d5f359aa1cda72742233a Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Wed, 20 Oct 2021 08:47:07 +0200 Subject: [PATCH] Use the nix 2.4 rc --- modules/base/nix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/base/nix/default.nix b/modules/base/nix/default.nix index acc9a74d..2ff38091 100644 --- a/modules/base/nix/default.nix +++ b/modules/base/nix/default.nix @@ -104,7 +104,7 @@ in nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) config.chvp.base.nix.unfreePackages; nixpkgs.overlays = [ (self: super: { - nix = super.nixUnstable; + nix = super.nix_2_4; }) ];