startit/Emne 3/shell.nix

14 lines
204 B
Nix
Raw Normal View History

2024-11-12 18:58:11 +01:00
# shell.nix
with import <nixpkgs> {};
mkShell {
name = "dotnet-env";
packages = [
(with dotnetCorePackages; combinePackages [
sdk_6_0
sdk_7_0
sdk_8_0
sdk_9_0
])
];
}