Compare commits

..
2 changed files with 10 additions and 21 deletions

View file

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

View file

@ -6,9 +6,8 @@
certificateFile = "/mnt/data/cloudflared/cert.pem"; certificateFile = "/mnt/data/cloudflared/cert.pem";
default = "http_status:404"; default = "http_status:404";
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";
}; };
}; };