mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-22 18:19:11 +00:00
11 lines
145 B
Nix
11 lines
145 B
Nix
{ lib, dotnet-runtime, dotnet-sdk, mkShell }:
|
|
|
|
mkShell {
|
|
packages = [
|
|
dotnet-runtime
|
|
dotnet-sdk
|
|
];
|
|
|
|
inputsFrom = [ dotnet-sdk ];
|
|
}
|