I use Home Manager to configure Firefox, including importing bookmarks from a separate bookmarks.nix file. This setup worked on 25.11.
After updating from 25.11 to 26.05, Firefox suddenly stopped importing any of my bookmarks and it acted as fresh install. The fresh install isn’t a problem(it is Nix), but i seek help with the bookmarks
programs.firefox = {
enable = true;
profiles.default = {
isDefault = true;
settings = { };
bookmarks = {
force = true;
settings = [
{
name = "Bookmarks Toolbar";
toolbar = true;
bookmarks = import ./bookmarks.nix;
}
{
name = "NixOS Search";
url = "https://search.nixos.org/";
}
];
};
};
};
bookmarks.nix
[
{ name = "YouTube"; url = "https://www.youtube.com"; }
]