summary refs log tree commit diff
path: root/modules/software-templates/dotnet.client.nix
blob: 1092ceec9e0886d057a0bb22df155379fb4fd598 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, lib, ... }:

{
    imports = [
        ./dotnet.nix
    ];
    environment.systemPackages = with pkgs; [
            jetbrains.rider
    ];
}