nixos-config/shells/dotnet.nix

11 lines
145 B
Nix

{ lib, dotnet-runtime, dotnet-sdk, mkShell }:
mkShell {
packages = [
dotnet-runtime
dotnet-sdk
];
inputsFrom = [ dotnet-sdk ];
}