diff --git a/lib/options.nix b/lib/options.nix index 1bb94e7..3a81736 100644 --- a/lib/options.nix +++ b/lib/options.nix @@ -66,10 +66,6 @@ in { proxy = { base = "proxy.${domain}"; hosts = { - "server" = d "https://server.dns.${domain}:8006"; - "router" = d "http://router.dns.${domain}:80"; - "home" = d "http://home.dns.${domain}:8123"; - "containers" = da "http://localhost:5001"; "code" = da "http://localhost:8443"; "dns" = da "http://localhost:8088"; @@ -94,9 +90,6 @@ in { }; }; records = [ - [ "server.dns.${domain}" "10.3.14.69" ] - [ "router.dns.${domain}" "10.3.14.1" ] - [ "main.dns.${domain}" "100.113.147.93" ] # this machine [ "proxy.${domain}" "main.dns.${domain}" ] [ "*.proxy.${domain}" "proxy.${domain}" ] diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index ff6656d..9f55182 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -58,10 +58,6 @@ [ "DNS" "http://localhost:8088/" ] [ "Proxy" "https://proxy.${homelab.domain}/" ] ]; - external = [ - [ "Proxmox" "proxmox" "https://server.proxy.${homelab.domain}" "http://server.dns.${homelab.domain}:8006/" ] - [ "OpenWRT" "openwrt" "https://router.proxy.${homelab.domain}" "http://router.dns.${homelab.domain}:80/" ] - ]; bookmarks = [ [ "Tailscale" "tailscale" "https://login.tailscale.com/" ] [ "Cloudflare" "cloudflare" "https://dash.cloudflare.com/" ] @@ -259,19 +255,6 @@ in { # mountpoints."/nix/store".hide = true; }]; } - { - type = "monitor"; - cache = "1m"; - title = "External"; - sites = map (e: { - same-tab = true; - allow-insecure = true; - title = builtins.elemAt e 0; - icon = "si:${builtins.elemAt e 1}"; - url = builtins.elemAt e 2; - check-url = builtins.elemAt e 3; - }) external; - } { type = "monitor"; cache = "1m"; diff --git a/modules/system/homelab/git.nix b/modules/system/homelab/git.nix index 39f4de1..ddf6df2 100644 --- a/modules/system/homelab/git.nix +++ b/modules/system/homelab/git.nix @@ -42,7 +42,7 @@ gitea-actions-runner.instances.nixos-deploy = { enable = true; name = "nixos-server-runner"; - url = "https://git.proxy.${homelab.domain}"; + url = "https://localhost:5080"; #"https://git.proxy.${homelab.domain}"; tokenFile = "/mnt/data/apps/forgejo/token-runner"; labels = [ "self-hosted:host" ]; hostPackages = with pkgs; [ bash coreutils git nix openssh nodejs ];