all: switch to nix 2.17

This commit is contained in:
Aaron Bieber 2023-09-28 09:26:33 -06:00
parent bab91af74c
commit 3e2eeb53bf
No known key found for this signature in database

View File

@ -1,5 +1,6 @@
{ pkgs, ... }:
{ pkgs, xinlib, ... }:
let
inherit (xinlib) todo;
nixOptions = {
gc = {
automatic = true;
@ -8,7 +9,7 @@ let
};
# Enable flakes
package = pkgs.nixUnstable;
package = todo "nix 2.18 has a regress: https://github.com/NixOS/nix/issues/9052" pkgs.nixVersions.nix_2_17;
extraOptions = ''
experimental-features = nix-command flakes
'';