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}" ]; }; }