Merge pull request #900 from amarshall/avoid-alias

darwin-uninstaller: Fix when using nixpkgs.config.allowAliases = false
This commit is contained in:
Michael Hoang 2024-03-07 11:31:23 +11:00 committed by GitHub
commit 550340062c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@ let
./configuration.nix
{
nixpkgs.source = pkgs.path;
nixpkgs.hostPlatform = pkgs.system;
nixpkgs.hostPlatform = pkgs.stdenv.hostPlatform.system;
system.includeUninstaller = false;
}
];