initial retooling #1

Merged
naturallaw777 merged 1130 commits from staging-dev into stable 2026-05-21 08:10:11 -05:00
2 changed files with 20 additions and 2 deletions
Showing only changes of commit 08452e06cc - Show all commits
+12 -2
View File
@@ -28,15 +28,25 @@
};
# ── Networking ──────────────────────────────────────────────
networking.hostName = "nixos";
networking.hostName = "sovransystemsos";
networking.networkmanager.enable = true;
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 80 443 8448 3051 ];
networking.firewall.allowedUDPPorts = [ 80 443 8448 3051 ];
networking.firewall.allowedUDPPorts = [ 80 443 8448 3051 5353 ];
networking.firewall.allowedUDPPortRanges = [
{ from = 49152; to = 65535; }
];
# ── mDNS / Avahi (sovransystemsos.local) ──────────────────
services.avahi = {
enable = true;
nssmdns4 = true;
publish = {
enable = true;
addresses = true;
};
};
# ── Locale / Time ──────────────────────────────────────────
time.timeZone = "America/Los_Angeles";
i18n.defaultLocale = "en_US.UTF-8";
+8
View File
@@ -145,6 +145,14 @@ $HAVEN {
EOF
fi
# Sovran Hub (LAN mDNS access)
cat >> /run/caddy/Caddyfile <<EOF
http://sovransystemsos.local {
reverse_proxy localhost:8937
}
EOF
# RTL (LAN access)
cat >> /run/caddy/Caddyfile <<EOF