dotfiles/hosts/modules/apps/rider.nix

26 lines
431 B
Nix
Raw Permalink Normal View History

2025-10-24 11:53:42 +10:00
{
pkgs,
pkgs-unstable,
2026-01-20 09:24:12 +10:00
dotnetVersions ? [8 9 10],
2025-10-24 11:53:42 +10:00
...
}: {
2026-01-20 09:24:12 +10:00
imports = [
../langs/dotnet.nix
];
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
2025-10-24 11:53:42 +10:00
];
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
icu
];
};
}