dotfiles/hosts/modules/apps/rider.nix

37 lines
737 B
Nix
Raw Normal View History

2025-10-24 11:53:42 +10:00
{
pkgs,
pkgs-unstable,
...
}: {
environment.systemPackages = with pkgs; [
# Ensure latest stable Rider version (not necessarily stable on NixOS)
pkgs-unstable.jetbrains.rider
2025-10-24 11:53:42 +10:00
# NOTE: Blazor requires a Chromium-based browser
chromium
# arc-browser
# .NET
dotnetCorePackages.dotnet_9.sdk
dotnetCorePackages.dotnet_9.aspnetcore
dotnetCorePackages.dotnet_9.runtime
2025-10-24 11:53:42 +10:00
# Mono
mono
# NOTE: nixpkgs-unstable uses .NET8 SDK
# WARNING: nixpkgs-25.05 uses .NET6 SDK (now marked insecure)
pkgs-unstable.msbuild
2025-10-24 11:53:42 +10:00
# .NET Framework Tools/Services
omnisharp-roslyn
netcoredbg
2025-10-24 11:53:42 +10:00
];
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
icu
];
};
}