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

index edbcca3..4ab30d5 100644 --- a/modules/software-templates/dotnet.nix +++ b/modules/software-templates/dotnet.nix
@@ -1,7 +1,9 @@ { pkgs, ... }: { - environment.systemPackages = with pkgs; [ (callPackage ../packages/dotnet-pack.nix { inherit pkgs; }) ]; + environment.systemPackages = with pkgs; [ + (callPackage ../packages/dotnet-pack.nix { inherit pkgs; }) + ]; environment.sessionVariables = { DOTNET_CLI_TELEMETRY_OPTOUT = "1"; DOTNET_ROOT = "${(pkgs.callPackage ../packages/dotnet-pack.nix { inherit pkgs; })}";