diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index 4cbfb89..c353e72 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -225,24 +225,14 @@ in { } { type = "bookmarks"; - groups = [ - { - links = [{ - same-tab = true; - title = "NixOS Flake"; - icon = "si:git"; - url = "https://flakes.satr14.my.id"; - }]; - } - { - links = map (e: { - same-tab = true; - title = builtins.elemAt e 0; - icon = "si:${builtins.elemAt e 1}"; - url = builtins.elemAt e 2; - }) 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"; diff --git a/modules/system/homelab/tunnels.nix b/modules/system/homelab/tunnels.nix index 7214d4b..80ea65c 100644 --- a/modules/system/homelab/tunnels.nix +++ b/modules/system/homelab/tunnels.nix @@ -6,9 +6,8 @@ certificateFile = "/mnt/data/cloudflared/cert.pem"; default = "http_status:404"; ingress = { - "git.${homelab.domain}" = "http://localhost:3000"; - "auth.${homelab.domain}" = "http://localhost:1411"; - "dash.${homelab.domain}" = "http://localhost:5070"; + "git.${homelab.domain}" = "http://localhost:3000"; + "auth.${homelab.domain}" = "http://localhost:1411"; "gallery.${homelab.domain}" = "http://localhost:2284"; }; };