diff --git a/modules/programs/firefox.nix b/modules/programs/firefox.nix index 07de012c4..292bbb91a 100644 --- a/modules/programs/firefox.nix +++ b/modules/programs/firefox.nix @@ -370,8 +370,8 @@ in { "${profilesPath}/${profile.path}/chrome/userContent.css" = mkIf (profile.userContent != "") { text = profile.userContent; }; - "${profilesPath}/${profile.path}/user.js" = - mkIf (profile.settings != { } || profile.extraConfig != "") { + "${profilesPath}/${profile.path}/user.js" = mkIf (profile.settings != { } + || profile.extraConfig != "" || profile.bookmarks != { }) { text = mkUserJs profile.settings profile.extraConfig profile.bookmarks; };