From 5eceeb635b520216a638aa9ac8190af0da82c6cf Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Sun, 2 Mar 2025 03:15:35 +0000 Subject: [PATCH] set firefox bookmarks backup firefox now backs up all bookmarks on exit to ~/bookmarks.html i would rather it do this whenever the bookmarks file is modified but this seems to be the only way outside of writing my own script for that --- home-manager/firefox.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home-manager/firefox.nix b/home-manager/firefox.nix index 4170cf6..304eb4c 100644 --- a/home-manager/firefox.nix +++ b/home-manager/firefox.nix @@ -29,6 +29,8 @@ "general.useragent.locale" = "en-GB"; "identity.fxaccounts.enabled" = false; "extensions.autoDisableScopes" = 0; + "browser.bookmarks.autoExportHTML" = true; + "browser.bookmarks.file" = "~/bookmarks.html"; }; };