♻️ Move firefox user config into correct directory

This commit is contained in:
Jo 2025-12-16 01:44:05 +01:00
parent 5da4af521e
commit c48551f4be
2 changed files with 18 additions and 13 deletions

View file

@ -3,10 +3,28 @@ let
inherit (lib) mkIf;
in
{
puzzlevision.apps.firefox = {
enable = true;
extensions = [
"uBlock0@raymondhill.net"
"ATBC@EasonWong"
"languagetool-webextension@languagetool.org"
"firefox-enpass@enpass.io"
"firefox@tampermonkey.net"
"wappalyzer@crunchlabz.com"
"{7a7a4a92-a2a0-41d1-9fd7-1e92480d612d}"
"{d49033ac-8969-488c-afb0-5cdb73957f41}"
];
};
programs.firefox = mkIf config.programs.firefox.enable {
# Required settings for Onebar
profiles.default.settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
# Fixes an issue regarding URL bar content cut-off
# https://git.gay/freeplay/Firefox-Onebar/issues/30
"browser.urlbar.trimHttps" = true;
};
};