dotfiles/home-manager/modules/firefox/config/bookmarks/development.nix

60 lines
1.3 KiB
Nix
Raw Normal View History

2024-11-09 16:44:23 -06:00
let
gitlabTags = ["git" "gitlab"];
gitlabURL = "https://gitlab.com/";
in {
name = "Development";
toolbar = false;
bookmarks = [
{
name = "Discord (Development Portal)";
url = "https://discord.com/developers/applications";
tags = ["discord" "development" "portal" "bot"];
keyword = "Discord";
}
{
name = "GitHub";
url = "https://github.com/BRBWaffles";
tags = ["git" "github" "brbwaffles"];
keyword = "GitHub";
}
{
name = "GitLab (Appoota)";
url = "${gitlabURL}/Appoota/dotfiles";
tags =
["appoota"]
++ gitlabTags;
keyword = "GitLab";
}
{
name = "GitLab (Fallaryn)";
url = "${gitlabURL}/fallaryn/dotfiles";
tags =
["fallaryn"]
++ gitlabTags;
keyword = "GitLab";
}
{
name = "GitLab (Isaac)";
url = "${gitlabURL}/askyourself/dotfiles";
tags =
["isaac" "askyourself"]
++ gitlabTags;
keyword = "GitLab";
}
{
name = "GitLab (Nick)";
url = "${gitlabURL}/BRBWaffles/dotfiles";
tags =
["brbwaffles"]
++ gitlabTags;
keyword = "GitLab";
}
{
name = "Hackage";
url = "https://hackage.haskell.org";
tags = ["hackage" "hack" "haskell"];
keyword = "Hack";
}
];
}