dotfiles/hosts/modules/apps/rider.nix

31 lines
528 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
# .NET
dotnetCorePackages.dotnet_9.sdk
dotnetCorePackages.dotnet_9.aspnetcore
dotnetCorePackages.dotnet_9.runtime
2025-10-24 11:53:42 +10:00
# Mono
mono
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
];
};
}