Skip to content

Commit

Permalink
firefox: use -unwrapped derivation on Darwin
Browse files Browse the repository at this point in the history
The wrapped version is not currently supported for the platform.
  • Loading branch information
booxter committed Jan 10, 2025
1 parent b37a19a commit 1bf958e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/programs/firefox/mkFirefoxModule.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let
supportedPlatforms = flatten (attrVals (attrNames platforms) lib.platforms);

isWrapped = versionAtLeast config.home.stateVersion "19.09"
&& wrappedPackageName != null;
&& wrappedPackageName != null && !isDarwin;

defaultPackageName =
if isWrapped then wrappedPackageName else unwrappedPackageName;
Expand Down

0 comments on commit 1bf958e

Please sign in to comment.