From 837301937a50c1fd5e6ff9ce9c480f56edc3a738 Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Tue, 23 Jan 2024 09:47:11 +0100 Subject: [PATCH] flake.nixpkgs: use nix_2_18 from unstable --- flake/nixpkgs.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake/nixpkgs.nix b/flake/nixpkgs.nix index fb127e75..8ee10908 100644 --- a/flake/nixpkgs.nix +++ b/flake/nixpkgs.nix @@ -63,6 +63,11 @@ import inputs.nixpkgs { gerschtli = prev.lib.composeManyExtensions gerschtliOverlays final prev; + # FIXME: stable nix_2_18 fails on aarch + nixVersions = super.nixVersions // { + inherit (unstable.nixVersions) nix_2_18; + }; + # the only alias that I need, this allows me to set allowAliases=false inherit system; }