mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Firefox: Apply global extension force setting to declarative extensions (#6567)
Respect the parent force option for the extension settings storage.js
This commit is contained in:
parent
fcac3d6d88
commit
70fbbf05a5
1 changed files with 1 additions and 1 deletions
|
|
@ -911,7 +911,7 @@ in {
|
|||
(name: settingConfig: {
|
||||
"${profilesPath}/${profile.path}/browser-extension-data/${name}/storage.js" =
|
||||
{
|
||||
force = settingConfig.force;
|
||||
force = settingConfig.force || profile.extensions.force;
|
||||
text = generators.toJSON { } settingConfig.settings;
|
||||
};
|
||||
}) profile.extensions.settings)))));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue