bookmarks.nix 716 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [
  2. {
  3. name = "ANIME"; # Bookmark Folder
  4. bookmarks = [
  5. {
  6. name = "ANIMEPAHE";
  7. url = "https://animepahe.com";
  8. }
  9. {
  10. name = "KICKASSANIME";
  11. url = "https://kickassanime.ro";
  12. }
  13. {
  14. name = "9Anime";
  15. url = "https://9anime.gs";
  16. }
  17. ];
  18. }
  19. {
  20. name = "NixOS";
  21. bookmarks = [
  22. {
  23. name = "Nix Package";
  24. url = "https://search.nixos.org/packages?channel=unstable";
  25. }
  26. {
  27. name = "Nix Options";
  28. url = "https://search.nixos.org/options?channel=unstable";
  29. }
  30. {
  31. name = "Home-Manager";
  32. url = "https://rycee.gitlab.io/home-manager/options.html";
  33. }
  34. ];
  35. }
  36. ]