diff options
| author | Franck Cuny <fcuny@roblox.com> | 2025-08-21 17:46:28 -0700 |
|---|---|---|
| committer | Franck Cuny <fcuny@roblox.com> | 2025-08-21 17:46:28 -0700 |
| commit | c192c1f2ad4ecb4058c231dc455fbfc738917bcd (patch) | |
| tree | f5b3b97fa407b82bd983677c73fbb801be8389f6 /home/programs/firefox/settings.nix | |
| parent | initial configuration for firefox (diff) | |
| download | infra-c192c1f2ad4ecb4058c231dc455fbfc738917bcd.tar.gz | |
split-up firefox configuration
Ensure we install the bin package, so that we can use the 1password
extension (we need a signed binary for that).
Diffstat (limited to '')
| -rw-r--r-- | home/programs/firefox/settings.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/home/programs/firefox/settings.nix b/home/programs/firefox/settings.nix new file mode 100644 index 0000000..304c99f --- /dev/null +++ b/home/programs/firefox/settings.nix @@ -0,0 +1,9 @@ +{ + "browser.tabs.groups.enabled" = true; # https://support.mozilla.org/en-US/kb/tab-groups + "browser.tabs.groups.smart.enabled" = true; # https://support.mozilla.org/en-US/kb/tab-groups + "browser.toolbars.bookmarks.visibility" = "never"; # don't show bookmark tabs + "browser.urlbar.trimURLs" = false; # show the complete URL + "sidebar.main.tools" = "aichat,history,bookmarks"; + "sidebar.revamp" = true; + "sidebar.verticalTabs" = true; # vertical tabs +} |
