Evie Litherland-Smith
dcccfa8216
Start adding bookmarks back as nix expression, WIP, missing some work bookmark at the moment
122 lines
2.8 KiB
Nix
122 lines
2.8 KiB
Nix
{ 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";
|
|
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 = "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";
|
|
bookmarks = [ ];
|
|
}
|
|
];
|
|
}
|
|
|
|
];
|
|
}]
|