Initial copy

This commit is contained in:
2025-10-26 10:50:05 +01:00
commit 75595d1136
206 changed files with 41011 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{pkgs ? import <nixpkgs> {}}: let
dotnet = with pkgs.dotnetCorePackages;
combinePackages [
sdk_8_0
aspnetcore_8_0
];
in
pkgs.mkShell {
packages = with pkgs; [
dotnet
csharpier
];
DOTNET_ROOT = "${dotnet}";
}