1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

firefox: do not override other attributes in 'cfg' (#1988)

Closes #1962.
This commit is contained in:
Bruno BELANYI 2021-05-10 00:06:04 +02:00 committed by GitHub
parent 15a2953c81
commit 7d765d8f46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -282,7 +282,7 @@ in
if isDarwin then
cfg.package
else if versionAtLeast config.home.stateVersion "19.09" then
cfg.package.override { cfg = fcfg; }
cfg.package.override (old: { cfg = old.cfg or {} // fcfg; })
else
(pkgs.wrapFirefox.override { config = bcfg; }) cfg.package { };
in