add ollama and safe mode

This commit is contained in:
Satria 2026-03-03 17:40:06 +07:00
commit 77e83981d7
4 changed files with 43 additions and 28 deletions

View file

@ -58,6 +58,7 @@
[ "ApacheHTTPD" "apache" "https://cdn.proxy.${homelab.domain}" "http://localhost:3000/" ]
[ "Forgejo" "forgejo" "https://git.proxy.${homelab.domain}" "http://localhost:5080/" ]
[ "Dockge" "docker" "https://containers.proxy.${homelab.domain}" "http://localhost:5001/" ]
[ "Ollama" "ollama" "https://ai.proxy.${homelab.domain}" "http://localhost:8080/" ]
];
bookmarks = [
[ "Tailscale" "tailscale" "https://login.tailscale.com/" ]
@ -187,6 +188,22 @@ in {
name = "Dashboard";
show-mobile-header = true;
columns = [
{
type = "bookmarks";
groups = [{
links = map (e: {
same-tab = true;
title = builtins.elemAt e 0;
icon = "si:${builtins.elemAt e 1}";
url = builtins.elemAt e 2;
}) bookmarks;
}];
}
{
type = "to-do";
id = "tasks";
hide-header = true;
}
{
size = "small";
widgets = [
@ -217,9 +234,7 @@ in {
widgets = [
{
type = "server-stats";
servers = [{
type = "local";
}];
servers = [{ type = "local"; }];
}
{
type = "monitor";
@ -235,27 +250,6 @@ in {
}
];
}
{
size = "small";
widgets = [
{
type = "bookmarks";
groups = [{
links = map (e: {
same-tab = true;
title = builtins.elemAt e 0;
icon = "si:${builtins.elemAt e 1}";
url = builtins.elemAt e 2;
}) bookmarks;
}];
}
{
type = "to-do";
id = "tasks";
hide-header = true;
}
];
}
];
}
];