startit/Emne 3/shell.nix

16 lines
219 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
])
2024-11-19 10:05:14 +01:00
csharp-ls
2024-11-12 18:58:11 +01:00
];
2024-11-19 10:05:14 +01:00
}