mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
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";
|
|
}
|
|
];
|
|
}
|