startit/Emne 3/shell.nix
Geir Okkenhaug Jerstad 7616efbf77 removed dotnet 6
2024-12-03 13:40:12 +01:00

14 lines
191 B
Nix

# shell.nix
with import <nixpkgs> {};
mkShell {
name = "dotnet-env";
packages = [
(with dotnetCorePackages; combinePackages [
sdk_8_0
sdk_9_0
])
csharp-ls
];
}