1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-07 00:35:04 +01:00

thunderbird: use -unwrapped on Darwin

The wrapper derivation is not currently supported for the platform.
This commit is contained in:
Ihar Hrachyshka 2025-01-10 18:14:31 -05:00
parent b93a4facb9
commit b37a19ab7b

View file

@ -133,7 +133,8 @@ in {
package = mkOption {
type = with types; nullOr package;
default = pkgs.thunderbird;
default =
if isDarwin then pkgs.thunderbird-unwrapped else pkgs.thunderbird;
defaultText = literalExpression "pkgs.thunderbird";
example = literalExpression "pkgs.thunderbird";
description =