From 16258b337466cd2b822f54a5605634b632d794b0 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 18 Jul 2024 12:55:27 -0400 Subject: [PATCH] nix: Update version from 2.18 to 2.22 This should fix a few issues with Nix that were fixed in newer versions. --- modules/system.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/system.nix b/modules/system.nix index 32559101..d8bf4eca 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -91,8 +91,10 @@ in }; nix = { + package = pkgs.nixVersions.latest; + settings = { - experimental-features = [ "nix-command" "flakes" "repl-flake" ]; + experimental-features = [ "nix-command" "flakes" ]; auto-optimise-store = true; warn-dirty = false; allow-import-from-derivation = false;