From a5b3ff029a7911db3a24d5996d18c3ccbdd59d46 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 10 Nov 2024 12:36:41 +0100 Subject: [PATCH] feat(firefox): remove native tabs --- home/graphical/firefox/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/home/graphical/firefox/default.nix b/home/graphical/firefox/default.nix index e0ff9be..ebf726b 100644 --- a/home/graphical/firefox/default.nix +++ b/home/graphical/firefox/default.nix @@ -12,6 +12,15 @@ lib.mkIf osConfig.programs.firefox.enable { profiles.ny = { name = "ny"; isDefault = true; + userChrome = '' + /* hides the native tabs */ + #TabsToolbar { + visibility: collapse; + } + ''; + settings = { + "toolkit.legacyUserProfileCustomizations.stylesheets" = true; + }; search = { default = "DuckDuckGo"; force = true;