MyStitcher/shell.nix

21 lines
335 B
Nix
Raw Normal View History

2025-07-07 16:07:14 +07:00
{ pkgs ? import
(builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-24.11.tar.gz";
})
{ }
}:
pkgs.mkShell {
name = "dotnet-rust-env";
buildInputs = [
pkgs.dotnetCorePackages.sdk_8_0
pkgs.rustup
];
shellHook = ''
export PATH=$HOME/.cargo/bin:$PATH
'';
}