From e29dd8a2283399b7e046937340509d5aec4b52ba Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Wed, 29 Jul 2026 06:54:49 -0500 Subject: changes --- hosts/ganymede/config.nix | 40 +++++++++------------------------------- 1 file changed, 9 insertions(+), 31 deletions(-) (limited to 'hosts/ganymede/config.nix') diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index 0858106..ed397ef 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -29,6 +29,7 @@ }; system.network = { + dns.areYouAServer = true; static = { ip = "192.168.50.2/24"; gateway = "192.168.50.1"; @@ -41,58 +42,35 @@ }; services = { - sshd = { - enable = true; - public = true; - - conf.rootLogin = true; - }; - - minecraft = { - enable = true; - port = 19132; # standard - public = true; - }; - - ngircd = { - enable = true; - port = 6667; # standard - public = true; - }; + sshd.enable = true; # :22 + minecraft.enable = true; # :19132 + ngircd.enable = true; # :6667 jta = { enable = true; port = 8072; - publicUrl = "jta.williamsfam.us.com"; - }; - ganyupload = { - enable = true; - port = 8073; - publicUrl = "upld.williamsfam.us.com"; }; goaccess = { enable = true; port = 7890; - privateUrl = "stats.ganymede"; }; btopweb = { enable = true; port = 8017; - privateUrl = "btop.ganymede"; }; qbittorrent = { enable = true; port = 8076; - privateUrl = "bittorrent.ganymede"; - }; - cgit = { - enable = true; - privateUrl = "git.ganymede"; }; + cgit.enable = true; glance = { enable = true; port = 8081; }; + filebrowser = { + enable = true; + port = 8082; + }; caddy = { enable = true; -- cgit v1.3.1