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

{
    imports = [
        ./dotnet.nix
    ];
    environment.systemPackages = with pkgs; [
            #`jetbrains.rider
            (jetbrains.plugins.addPlugins jetbrains.rider [ "github-copilot" ])
    ];
}