diff options
author | azahi <azat@bahawi.net> | 2025-02-05 17:18:02 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-02-05 17:18:02 +0300 |
commit | ec25e095a26ad1e4823887a6653132948ebc5f87 (patch) | |
tree | f3d9e02f13515e7c63bc716dc39e193924589bc8 /modules/firefox/default.nix | |
parent | 2025-02-02 (diff) |
2025-02-05
Diffstat (limited to '')
-rw-r--r-- | modules/firefox/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/firefox/default.nix b/modules/firefox/default.nix index bad56ff..3507f2d 100644 --- a/modules/firefox/default.nix +++ b/modules/firefox/default.nix @@ -40,7 +40,7 @@ in let mkCssWithRoot = css: - mkMerge [ + [ ( let mapFonts = concatMapStringsSep ", " (font: ''"${font}"''); @@ -59,7 +59,8 @@ in '' ) (builtins.readFile css) - ]; + ] + |> concatLines; in { id = 0; @@ -516,6 +517,7 @@ in "browser.theme.dark-private-windows" = false; "browser.toolbars.bookmarks.visibility" = "newtab"; "browser.translations.enable" = false; + "browser.uidensity" = 0; "browser.urlbar.decodeURLsOnCopy" = true; "browser.urlbar.suggest.addons" = false; "browser.urlbar.suggest.bookmark" = true; @@ -538,7 +540,9 @@ in "media.hardwaremediakeys.enabled" = false; "media.videocontrols.picture-in-picture.video-toggle.enabled" = false; "reader.parse-on-load.enabled" = false; + "svg.context-properties.content.enabled" = true; "toolkit.legacyUserProfileCustomizations.stylesheets" = true; + "widget.gtk.rounded-bottom-corners.enabled" = true; }; }; }; |