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

17 lines
190 B
Nix
Raw Permalink Normal View History

2024-12-04 16:58:17 +00:00
{
mkShell,
dotnetCorePackages,
2025-03-26 16:14:46 +00:00
nixfmt,
deadnix,
statix,
2024-12-04 16:58:17 +00:00
}:
mkShell {
2025-03-26 16:14:46 +00:00
name = "dotnet";
2024-12-04 16:58:17 +00:00
packages = [
dotnetCorePackages.dotnet_9.sdk
2025-03-26 16:14:46 +00:00
nixfmt
deadnix
statix
2024-12-04 16:58:17 +00:00
];
}