prep for distrust-mini

This commit is contained in:
root 2025-11-09 23:58:44 +00:00
parent 376ff22be5
commit f25280a6ec
4 changed files with 6 additions and 11 deletions

View file

@ -1,9 +1,12 @@
{ {
imports = [ imports = [
# Core System
../shared ../shared
# TOR bridge # Non-stateful services
./tor.nix ./tor.nix
# Stateful services
# Status page in diff. data center for redundancy/resilience # Status page in diff. data center for redundancy/resilience
./uptime-kuma.nix ./uptime-kuma.nix
]; ];

View file

@ -1,7 +0,0 @@
{
services.caddy = {
enable = true;
};
networking.firewall.allowedTCPPorts = [80 443];
}

View file

@ -1,9 +1,7 @@
{ {
imports = [ imports = [
../shared
# Core System # Core System
./caddy.nix ../shared
# Non-stateful services # Non-stateful services
./ipfs.nix ./ipfs.nix

View file

@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./borg.nix ./borg.nix
./caddy.nix
]; ];
} }