mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-12-19 13:48:48 +00:00
♻️ Move firefox user config into correct directory
This commit is contained in:
parent
5da4af521e
commit
c48551f4be
2 changed files with 18 additions and 13 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue