summary refs log tree commit diff
path: root/modules/software-templates/devenv/dotnet.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/software-templates/devenv/dotnet.nix')
-rw-r--r--modules/software-templates/devenv/dotnet.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/software-templates/devenv/dotnet.nix b/modules/software-templates/devenv/dotnet.nix
new file mode 100644

index 0000000..b819743 --- /dev/null +++ b/modules/software-templates/devenv/dotnet.nix
@@ -0,0 +1,14 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + (jetbrains.plugins.addPlugins jetbrains.rider [ + "17718" # github-copilot + "nixidea" + ]) + dotnetCorePackages.sdk_10_0 + ]; + environment.sessionVariables = { + DOTNET_CLI_TELEMETRY_OPTOUT = "1"; + }; +}