startit/Emne 3/shell.nix
Geir Okkenhaug Jerstad 09947e3059 typo i krokodillespillet
2024-11-19 10:05:14 +01:00

16 lines
219 B
Nix

# 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
])
csharp-ls
];
}