try fenix default instead of stable?
This commit is contained in:
parent
2c7484b538
commit
0736bddb63
1 changed files with 4 additions and 4 deletions
|
@ -17,10 +17,10 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
overlays = [ fenix.overlays.default ];
|
overlays = [ fenix.overlays.default ];
|
||||||
};
|
};
|
||||||
fenixStable = fenix.packages.${system}.stable;
|
fenixDefault = fenix.packages.${system}.default;
|
||||||
fenixPlatform = pkgs.makeRustPlatform {
|
fenixPlatform = pkgs.makeRustPlatform {
|
||||||
cargo = fenixStable.toolchain;
|
cargo = fenixDefault.toolchain;
|
||||||
rustc = fenixStable.toolchain;
|
rustc = fenixDefault.toolchain;
|
||||||
};
|
};
|
||||||
in rec {
|
in rec {
|
||||||
packages.${name} = pkgs.symlinkJoin {
|
packages.${name} = pkgs.symlinkJoin {
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
devShell = with pkgs; let
|
devShell = with pkgs; let
|
||||||
fenixWith = fenixStable.withComponents [
|
fenixWith = fenixDefault.withComponents [
|
||||||
"cargo"
|
"cargo"
|
||||||
"clippy"
|
"clippy"
|
||||||
"rust-src"
|
"rust-src"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue