Added Mozilla's Rust Nightly

This commit is contained in:
2025-05-14 22:45:19 +03:00
parent 7f5788c964
commit 65c87e3f3e

17
rust-nightly.nix Normal file
View File

@@ -0,0 +1,17 @@
let
moz_overlay =
import (builtins.fetchTarball
"https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz");
nixpkgs = import <nixpkgs> {overlays = [moz_overlay];};
in
with nixpkgs;
stdenv.mkDerivation {
name = "moz_overlay_shell";
buildInputs = [
# to use the latest nightly:
nixpkgs.latest.rustChannels.nightly.rust
];
shellHook = ''
exec zsh
'';
}