blob: c612bf4deeeb5e56ea0094c48f06ba5714294ae8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
pkgs,
...
}: let
bookmarks = [
{
name = "Feed - Piped";
url = "https://piped.video/feed";
}
{
name = "DeepL Translate";
url = "https://www.deepl.com/translator";
}
{
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
|