From 0736bddb638ae2e7138cf152ffdb9cdc05d97147 Mon Sep 17 00:00:00 2001 From: xenofem Date: Thu, 25 Sep 2025 01:16:24 -0400 Subject: [PATCH] try fenix default instead of stable? --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 1f661a1..b034a68 100644 --- a/flake.nix +++ b/flake.nix @@ -17,10 +17,10 @@ inherit system; overlays = [ fenix.overlays.default ]; }; - fenixStable = fenix.packages.${system}.stable; + fenixDefault = fenix.packages.${system}.default; fenixPlatform = pkgs.makeRustPlatform { - cargo = fenixStable.toolchain; - rustc = fenixStable.toolchain; + cargo = fenixDefault.toolchain; + rustc = fenixDefault.toolchain; }; in rec { packages.${name} = pkgs.symlinkJoin { @@ -45,7 +45,7 @@ }; devShell = with pkgs; let - fenixWith = fenixStable.withComponents [ + fenixWith = fenixDefault.withComponents [ "cargo" "clippy" "rust-src"