From 454bc1ee4ca7af60926fc3f258ee17b79763e24a Mon Sep 17 00:00:00 2001 From: Satria Date: Sun, 1 Mar 2026 22:08:51 +0700 Subject: [PATCH 1/2] fix sigsegv error and dashboard not loading --- modules/system/homelab/dash.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index 86a1c7c..df158fa 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -55,9 +55,9 @@ [ "CDN" "http://10.3.14.217:3000/" ] ]; services = [ - [ "PocketID" "si:authentik" "https://auth.satr14.my.id" "http://main.dns.satr14.my.id:1411/" ] - [ "2FAuth" "si:authy" "https://2fa.satr14.my.id" "http://main.dns.satr14.my.id:8090/" ] - [ "VaultWarden" "si:vaultwarden" "https://pass.proxy.satr14.my.id" "http://main.dns.satr14.my.id:8060/" ] + [ "PocketID" "authentik" "https://auth.satr14.my.id" "http://main.dns.satr14.my.id:1411/" ] + [ "2FAuth" "authy" "https://2fa.satr14.my.id" "http://main.dns.satr14.my.id:8090/" ] + [ "VaultWarden" "vaultwarden" "https://pass.proxy.satr14.my.id" "http://main.dns.satr14.my.id:8060/" ] ]; bookmarks = [ [ "Tailscale" "tailscale" "https://login.tailscale.com/" ] @@ -72,7 +72,7 @@ in { environmentFile = "/var/lib/glance/.env"; settings = { server = { - host = "127.0.0.1"; + host = "0.0.0.0"; # "127.0.0.1"; port = 5070; }; @@ -197,9 +197,10 @@ in { style = "compact"; show-failing-only = true; sites = map (e: { - enabled = true; - domain = builtins.elemAt e 0; - answer = builtins.elemAt e 1; + same-tab = true; + allow-insecure = true; + title = builtins.elemAt e 0; + url = builtins.elemAt e 1; }) monitor; } { @@ -254,4 +255,4 @@ in { ]; }; }; -} \ No newline at end of file +} From da908a8e140c2ae8a083760916196c9faa1a4d30 Mon Sep 17 00:00:00 2001 From: Satria Date: Sun, 1 Mar 2026 22:09:25 +0700 Subject: [PATCH 2/2] change bind ip to localhost --- modules/system/homelab/dash.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index df158fa..9d46430 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -72,7 +72,7 @@ in { environmentFile = "/var/lib/glance/.env"; settings = { server = { - host = "0.0.0.0"; # "127.0.0.1"; + host = "127.0.0.1"; port = 5070; };