mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 17:49:07 +01:00
Compare commits
No commits in common. "4a36dbf182731aaa72e81026a088b4a13a902502" and "01a13fd8251999795fd35bc0bd45f9cd81521506" have entirely different histories.
4a36dbf182
...
01a13fd825
2 changed files with 124 additions and 3 deletions
|
|
@ -96,6 +96,7 @@ in
|
|||
sponsorblock.uuid = "sponsorBlocker@ajay.app";
|
||||
clearurls.uuid = "{74145f27-f039-47ce-a470-a662b129930a}";
|
||||
languagetool.uuid = "languagetool-webextension@languagetool.org";
|
||||
new-tab-override.uuid = "newtaboverride@agenedia.com";
|
||||
karakeep = {
|
||||
uuid = "addon@karakeep.app";
|
||||
defaultArea = "navbar";
|
||||
|
|
@ -116,7 +117,7 @@ in
|
|||
"browser.uiCustomization.state" = uiState;
|
||||
"browser.startup.homepage" = lib.mkIf (cfg.homepage != null) cfg.homepage;
|
||||
"sidebar.position_start" = false;
|
||||
"browser.toolbars.bookmarks.visibility" = "always";
|
||||
"browser.toolbars.bookmarks.visibility" = "never";
|
||||
"browser.bookmarks.restore_default_bookmarks" = false;
|
||||
"browser.bookmarks.file" = "";
|
||||
"media.videocontrols.picture-in-picture.video-toggle.enabled" = false;
|
||||
|
|
|
|||
|
|
@ -94,6 +94,123 @@ let
|
|||
</div>
|
||||
'';
|
||||
};
|
||||
|
||||
bookmarksWidget = {
|
||||
type = "bookmarks";
|
||||
groups = [
|
||||
{
|
||||
links = [
|
||||
{
|
||||
title = "YouTube";
|
||||
url = "https://www.youtube.com/";
|
||||
}
|
||||
{
|
||||
title = "DeepL";
|
||||
url = "https://www.deepl.com/en/translator";
|
||||
}
|
||||
{
|
||||
title = "GitHub";
|
||||
url = "https://github.com/SebastianStork";
|
||||
}
|
||||
{
|
||||
title = "ChatGBT";
|
||||
url = "https://chatgpt.com/";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
title = "Email";
|
||||
links = [
|
||||
{
|
||||
title = "Mailbox";
|
||||
url = "https://app.mailbox.org/appsuite/#!!&app=io.ox/mail&folder=default0/INBOX";
|
||||
}
|
||||
{
|
||||
title = "Proton";
|
||||
url = "https://mail.proton.me/u/1/inbox";
|
||||
}
|
||||
{
|
||||
title = "h_da";
|
||||
url = "https://webmail.stud.h-da.de/stud/?_task=mail&_mbox=INBOX";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
title = "Nix";
|
||||
color = "200 50 50";
|
||||
links = [
|
||||
{
|
||||
title = "Wiki";
|
||||
url = "https://wiki.nixos.org/wiki/Main_Page";
|
||||
}
|
||||
{
|
||||
title = "NixOS Manual";
|
||||
url = "https://nixos.org/manual/nixos/stable/";
|
||||
}
|
||||
{
|
||||
title = "Packages Search";
|
||||
url = "https://search.nixos.org/packages";
|
||||
}
|
||||
{
|
||||
title = "NixOS Options Search";
|
||||
url = "https://search.nixos.org/options";
|
||||
}
|
||||
{
|
||||
title = "HM Options Search";
|
||||
url = "https://home-manager-options.extranix.com/";
|
||||
}
|
||||
{
|
||||
title = "Function Search";
|
||||
url = "https://noogle.dev/";
|
||||
}
|
||||
{
|
||||
title = "GitHub Code Search";
|
||||
url = "https://github.com/search?q=lang%3Anix%20&type=code";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
title = "Infra";
|
||||
color = "140 70 50";
|
||||
links = [
|
||||
{
|
||||
title = "Backblaze";
|
||||
url = "https://secure.backblaze.com/b2_buckets.htm";
|
||||
}
|
||||
{
|
||||
title = "Healthchecks";
|
||||
url = "https://healthchecks.io/projects/ed5214d3-971f-4b66-997d-8ffd0d8cd4ca/checks/";
|
||||
}
|
||||
{
|
||||
title = "Hetzner";
|
||||
url = "https://console.hetzner.cloud/projects/10289618/servers";
|
||||
}
|
||||
{
|
||||
title = "Porkbun";
|
||||
url = "https://porkbun.com/";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
title = "Uni";
|
||||
color = "10 70 50";
|
||||
links = [
|
||||
{
|
||||
title = "My";
|
||||
url = "https://my.h-da.de/";
|
||||
}
|
||||
{
|
||||
title = "Moodle";
|
||||
url = "https://lernen.h-da.de/";
|
||||
}
|
||||
{
|
||||
title = "GitLab";
|
||||
url = "https://code.fbi.h-da.de/";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
in
|
||||
{
|
||||
options.custom.web-services.glance = {
|
||||
|
|
@ -126,7 +243,7 @@ in
|
|||
{
|
||||
type = "search";
|
||||
search-engine = "https://search.splitleaf.de/search?q={QUERY}";
|
||||
autofocus = false;
|
||||
autofocus = true;
|
||||
}
|
||||
applicationSitesWidget
|
||||
observabilitySitesWidget
|
||||
|
|
@ -134,7 +251,10 @@ in
|
|||
}
|
||||
{
|
||||
size = "small";
|
||||
widgets = [ githubBadgeWidget ];
|
||||
widgets = [
|
||||
githubBadgeWidget
|
||||
bookmarksWidget
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue