nixos/home/firefox/bookmarks.nix

142 lines
3.4 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
[{
name = "Toolbar";
toolbar = true;
bookmarks = [
{
name = "NixOS Wiki";
tags = [ "wiki" "nix" ];
url = "https://nixos.wiki/";
}
{
name = "Arch Wiki";
tags = [ "wiki" "arch" ];
url = "https://wiki.archlinux.org/";
}
{
name = "Hyprland Wiki";
tags = [ "wiki" "hyprland" "wayland" "wlroots" ];
url = "https://wiki.hyprland.org/";
}
{
name = "Dev";
bookmarks = [
{
name = "Gitea";
tags = [ "git" "source" ];
url = "https://git.xenia.me.uk";
}
{
name = "GitHub";
tags = [ "git" "source" ];
url = "https://github.com";
}
{
name = "GitLab";
tags = [ "git" "source" ];
url = "https://gitlab.com";
}
{
name = "StackOverflow";
url = "https://stackoverflow.com";
}
{
name = "PyPI";
url = "https://pypi.org";
}
];
}
{
name = "Games";
bookmarks = [
{
name = "ProtonDB";
url = "https://www.protondb.com/";
}
{
name = "SteamDB";
url = "https://steamdb.info/";
}
{
name = "Roberts Space Industries";
url = "https://robertsspaceindustries.com/";
}
];
}
{
name = "Work";
bookmarks = [
{
name = "Nucleus";
url = "https://nucleus.ukaea.uk";
}
{
name = "JET";
url = "http://w3.jet.uk";
}
{
name = "Physics Summary";
url =
"https://users.euro-fusion.org/pages/physics-summary/LatestSession.php";
}
{
name = "JSPO";
url =
"https://www.jspo.jet.uk/pages/operations/jpecreports_2023.html";
}
{
name = "Rosters";
2023-10-02 08:28:43 +01:00
bookmarks = [
{
name = "J2 Roster";
url =
"https://apps.powerapps.com/play/e/default-c6ac664b-ae27-4d5d-b4e6-bb5717196fc7/a/c403a9ad-95e0-47b7-8c82-752b22a6d6f5?tenantId=c6ac664b-ae27-4d5d-b4e6-bb5717196fc7&source=portal";
}
{
name = "KS5";
url =
"https://wiki.jetdata.eu/open/index.php?title=Ks5:roster3008";
}
];
}
{
name = "OpenWiki";
bookmarks = [
{
name = "Main Page";
url = "https://wiki.jetdata.eu/open/index.php?title=Main_Page";
}
{
name = "KS5";
url = "https://wiki.jetdata.eu/open/index.php?title=CXS:Topic3";
}
{
name = "KT3";
url = "https://wiki.jetdata.eu/open/index.php?title=KT3_Journals";
}
];
}
{
name = "Mimics";
2023-10-02 11:51:47 +01:00
bookmarks = [
{
name = "Countdown";
url = "http://webmimic.jet.uk/mc/codas/countdown";
}
{
name = "KS5";
url = "http://webmimic.jet.uk/DG/codas/ks5.mim.html";
}
{
name = "KT3";
url = "http://webmimic.jet.uk/DG/codas/kt3spec.mim.html";
}
];
}
];
}
];
}]