1 files changed, 2 insertions, 2 deletions
diff --git a/modules/software-templates/dotnet.nix b/modules/software-templates/dotnet.nix
index 9abe797..ede22a2 100644
--- a/modules/software-templates/dotnet.nix
+++ b/modules/software-templates/dotnet.nix
@@ -6,6 +6,6 @@
];
environment.sessionVariables = {
DOTNET_CLI_TELEMETRY_OPTOUT = "1";
- DOTNET_ROOT = "${(callPackage ../packages/dotnet-pack.nix { inherit pkgs; })}";
+ DOTNET_ROOT = "${(pkgs.callPackage ../packages/dotnet-pack.nix { inherit pkgs; })}";
};
-}
\ No newline at end of file
+}
|