From e12a8628d39a8b19c5bdff0093cb09b7809dc44b Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Fri, 23 May 2025 23:50:39 -0400 Subject: [PATCH] use unstable nix --- common/systemModules/nix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/systemModules/nix.nix b/common/systemModules/nix.nix index e3276f3..e618a6f 100644 --- a/common/systemModules/nix.nix +++ b/common/systemModules/nix.nix @@ -1,6 +1,6 @@ { config, - stable, + unstable, inputs, ... }: @@ -13,7 +13,7 @@ "flakes" ]; }; - package = stable.nix; + package = unstable.nix; nixPath = [ "nixpkgs=${inputs.nixpkgs-unstable}" ]; }; }