summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2024-03-06 08:04:42 -0500
committerAndrew Marshall <andrew@johnandrewmarshall.com>2024-03-06 08:04:42 -0500
commit5c2700533ced5c216ee451f86093bbb39094b912 (patch)
tree7cada6d6908b251d69093267585d9851700ad530 /pkgs
parentdaa03606dfb5296a22e842acb02b46c1c4e9f5e7 (diff)
darwin-uninstaller: Fix when using nixpkgs.config.allowAliases = false
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/darwin-uninstaller/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/darwin-uninstaller/default.nix b/pkgs/darwin-uninstaller/default.nix
index 94c0749..3eb2c24 100644
--- a/pkgs/darwin-uninstaller/default.nix
+++ b/pkgs/darwin-uninstaller/default.nix
@@ -7,7 +7,7 @@ let
./configuration.nix
{
nixpkgs.source = pkgs.path;
- nixpkgs.hostPlatform = pkgs.system;
+ nixpkgs.hostPlatform = pkgs.stdenv.hostPlatform.system;
system.includeUninstaller = false;
}
];