startit/Emne 3/shell.nix
2024-12-03 13:54:07 +01:00

15 lines
204 B
Nix

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