I have always been discovering new things about Linux distros while distro hopping. And when I get something I really like, I just copy the package name and make sure I install it in every distro I use in the future.
Let me start:
- Clipboard manager (Gpaste)
- KDE connect
When you set a FF profile there is a key called
bookmarks
. You can set them there:programs.firefox = { enable = true; extensions = [ pkgs.nur.repos.rycee.firefox-addons.vimium ... ]; profiles = { my-profile = { name = "yourname"; settings = {}; bookmarks = [ { name = "This is a folder"; toolbar = true; bookmarks = [ { name = "You can nest folders"; bookmarks = [ { name = "This is a lemmy bookmark"; keyword = "lemmy"; url = "https://lemmy.ml/"; } ... ]; ]; }; }; };
You can always look at the home manager reference, I usually look here.