Files
2026-07-15 12:48:27 -05:00

14 lines
208 B
Nix

# Legacy shell.nix for .NET template
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = [
pkgs.dotnet-sdk
pkgs.git
];
shellHook = "" "
echo 'Welcome to the .NET devShell!'
" "";
}