switch to fenix default

This commit is contained in:
xenofem 2025-09-25 01:20:15 -04:00
parent 80bca69e5e
commit adda007710

View file

@ -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 {
@ -59,7 +59,7 @@
};
devShell = with pkgs; let
fenixWith = fenixStable.withComponents [
fenixWith = fenixDefault.withComponents [
"cargo"
"clippy"
"rust-src"