about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/firefox/config/bookmarks/default.nix
blob: 0ef3eb64a1982e86aedb2513b82958cdf45b412f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  lib,
  pkgs,
  ...
}: let
  bookmarks = [
    {
      name = "Nix lib";
      url = "https://teu5us.github.io/nix-lib.html";
    }

    {
      name = "Nixpkgs manual";
      url = "https://ryantm.github.io/nixpkgs/";
    }
  ];

  mkBookmarksFile = (import ./lib.nix) {inherit lib pkgs;};
  bookmarks_file = mkBookmarksFile bookmarks;
in
  bookmarks_file