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

16 lines
190 B
Nix

{
mkShell,
dotnetCorePackages,
nixfmt,
deadnix,
statix,
}:
mkShell {
name = "dotnet";
packages = [
dotnetCorePackages.dotnet_9.sdk
nixfmt
deadnix
statix
];
}