Compare commits

...

2 commits

Author SHA1 Message Date
bcde69c1ea make dashboard public 2026-03-06 14:58:21 +07:00
58fa28434b add link to flake 2026-03-06 14:57:44 +07:00
2 changed files with 21 additions and 10 deletions

View file

@ -225,14 +225,24 @@ in {
} }
{ {
type = "bookmarks"; type = "bookmarks";
groups = [{ groups = [
{
links = [{
same-tab = true;
title = "NixOS Flake";
icon = "si:git";
url = "https://flakes.satr14.my.id";
}];
}
{
links = map (e: { links = map (e: {
same-tab = true; same-tab = true;
title = builtins.elemAt e 0; title = builtins.elemAt e 0;
icon = "si:${builtins.elemAt e 1}"; icon = "si:${builtins.elemAt e 1}";
url = builtins.elemAt e 2; url = builtins.elemAt e 2;
}) bookmarks; }) bookmarks;
}]; }
];
} }
{ {
type = "to-do"; type = "to-do";

View file

@ -8,6 +8,7 @@
ingress = { ingress = {
"git.${homelab.domain}" = "http://localhost:3000"; "git.${homelab.domain}" = "http://localhost:3000";
"auth.${homelab.domain}" = "http://localhost:1411"; "auth.${homelab.domain}" = "http://localhost:1411";
"dash.${homelab.domain}" = "http://localhost:5070";
"gallery.${homelab.domain}" = "http://localhost:2284"; "gallery.${homelab.domain}" = "http://localhost:2284";
}; };
}; };