remove deps on other stuff
Some checks are pending
Activate Homelab Configuration / rebuild (push) Waiting to run

This commit is contained in:
Satria 2026-05-01 16:57:25 +07:00
commit 086b6f826e
3 changed files with 1 additions and 25 deletions

View file

@ -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}" ]

View file

@ -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";

View file

@ -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 ];