added dotnet bc we bad

This commit is contained in:
2025-05-20 06:53:38 +03:00
parent 65c87e3f3e
commit c2d8d76531
3 changed files with 32 additions and 24 deletions

View File

@@ -1,17 +1,15 @@
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
'';
}
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
'';
}