make librewolf dont clear cookies

This commit is contained in:
MeexReay 2025-09-07 15:54:05 +03:00
parent 3d3520ea4b
commit 7513bb369f
2 changed files with 10 additions and 7 deletions

View File

@ -31,7 +31,7 @@
inputs.nix-flatpak.homeManagerModules.nix-flatpak inputs.nix-flatpak.homeManagerModules.nix-flatpak
]; ];
home-manager.backupFileExtension = "backup93"; home-manager.backupFileExtension = "backup94";
} }
]; ];
}; };

View File

@ -22,12 +22,15 @@
@import "firefox-gnome-theme/userContent.css"; @import "firefox-gnome-theme/userContent.css";
''; '';
settings = { settings = {
## Firefox gnome theme ## - https://github.com/rafaelmardojai/firefox-gnome-theme/blob/7cba78f5216403c4d2babb278ff9cc58bcb3ea66/configuration/user.js # firefox-gnome-theme related
# (copied into here because home-manager already writes to user.js) "toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"toolkit.legacyUserProfileCustomizations.stylesheets" = true; # Enable customChrome.cs "browser.uidensity" = 0;
"browser.uidensity" = 0; # Set UI density to normal "svg.context-properties.content.enabled" = true;
"svg.context-properties.content.enabled" = true; # Enable SVG context-propertes "browser.theme.dark-private-windows" = false;
"browser.theme.dark-private-windows" = false; # Disable private window dark theme
# do not clear cookies
"privacy.clearOnShutdown.history" = false;
"privacy.clearOnShutdown.cookies" = false;
}; };
}; };
}; };