From 633383dd2b8551d090382f727d6dd324ae9978df Mon Sep 17 00:00:00 2001 From: winston Date: Thu, 20 Jun 2024 08:29:29 +0200 Subject: [PATCH] fix: use `nixVersions.latest` instead of pinned version --- machines/common/shared/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/common/shared/nix.nix b/machines/common/shared/nix.nix index c62d055..0f2f125 100644 --- a/machines/common/shared/nix.nix +++ b/machines/common/shared/nix.nix @@ -14,7 +14,7 @@ in nixpkgs.config.allowUnfree = true; nix = { gc.automatic = true; - package = pkgs.nixVersions.nix_2_22; + package = pkgs.nixVersions.latest; settings = { # breaks the Nix Store on macOS # https://github.com/NixOS/nix/issues/7273