feat: add dotnet

This commit is contained in:
Artur Manuel 2024-12-04 16:58:17 +00:00
commit 9b3f73848c
12 changed files with 308 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{
mkShell,
dotnetCorePackages,
}:
mkShell {
packages = [
dotnetCorePackages.dotnet_9.sdk
];
}