30 lines
528 B
Nix
30 lines
528 B
Nix
{
|
|
pkgs,
|
|
pkgs-unstable,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
# Ensure latest stable Rider version (not necessarily stable on NixOS)
|
|
pkgs-unstable.jetbrains.rider
|
|
|
|
# .NET
|
|
dotnetCorePackages.dotnet_9.sdk
|
|
dotnetCorePackages.dotnet_9.aspnetcore
|
|
dotnetCorePackages.dotnet_9.runtime
|
|
|
|
# Mono
|
|
mono
|
|
msbuild
|
|
|
|
# .NET Framework Tools/Services
|
|
omnisharp-roslyn
|
|
netcoredbg
|
|
];
|
|
|
|
programs.nix-ld = {
|
|
enable = true;
|
|
libraries = with pkgs; [
|
|
icu
|
|
];
|
|
};
|
|
}
|