feat(firefox): remove native tabs

This commit is contained in:
Nydragon 2024-11-10 12:36:41 +01:00
parent fe85980e8a
commit a5b3ff029a
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -12,6 +12,15 @@ lib.mkIf osConfig.programs.firefox.enable {
profiles.ny = { profiles.ny = {
name = "ny"; name = "ny";
isDefault = true; isDefault = true;
userChrome = ''
/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}
'';
settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
search = { search = {
default = "DuckDuckGo"; default = "DuckDuckGo";
force = true; force = true;