home: firefox: fix deprecated option
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2025-02-27 12:44:10 +00:00
parent 0dc8ac4433
commit 88c00bb83d

View file

@ -61,19 +61,21 @@ in
"ui.systemUsesDarkTheme" = true; # Dark mode "ui.systemUsesDarkTheme" = true; # Dark mode
}; };
extensions = with pkgs.nur.repos.rycee.firefox-addons; ([ extensions = {
bitwarden packages = with pkgs.nur.repos.rycee.firefox-addons; ([
consent-o-matic bitwarden
form-history-control consent-o-matic
reddit-comment-collapser form-history-control
reddit-enhancement-suite reddit-comment-collapser
refined-github reddit-enhancement-suite
sponsorblock refined-github
ublock-origin sponsorblock
] ublock-origin
++ lib.optional (cfg.tridactyl.enable) tridactyl ]
++ lib.optional (cfg.ff2mpv.enable) ff2mpv ++ lib.optional (cfg.tridactyl.enable) tridactyl
); ++ lib.optional (cfg.ff2mpv.enable) ff2mpv
);
};
}; };
}; };
}; };