flake-template-hell/templates/dotnet/nix/shell.nix

10 lines
106 B
Nix
Raw Normal View History

2024-12-04 16:58:17 +00:00
{
mkShell,
dotnetCorePackages,
}:
mkShell {
packages = [
dotnetCorePackages.dotnet_9.sdk
];
}