blob: c612bf4deeeb5e56ea0094c48f06ba5714294ae8 (
plain) (
tree)
|
|
{
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
|