diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-23 15:09:58 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-02-23 15:09:58 -0600 |
| commit | d2747292dff98c64b974bdfe6b46bc62252298de (patch) | |
| tree | eec31506ba7e7b66888b4b05cb7d9fe720a2e42d /hosts | |
| parent | 66232d31d1f115a796dc76a9f6df88a6b13c424e (diff) | |
clean up services
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/ganymede/config.nix | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index 03d9804..6d5e34f 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -54,26 +54,38 @@ listenAddr = "0.0.0.0"; rootLogin = true; } - # { - # port = 22; - # listenAddr = "0.0.0.0"; - # otp = true; - # } { port = 22; + listenAddr = "0.0.0.0"; + otp = true; + } + { + # also enable ipv6 + port = 22; listenAddr = "[::]"; } ]; }; - goaccess.enable = true; - cgit.enable = true; + goaccess = { + enable = true; + privateUrl = "stats.ganymede"; + }; + + cgit = { + enable = true; + privateUrl = "git.ganymede"; + }; polaris = { enable = true; privateUrl = "music.ganymede"; }; + qbittorrent = { + enable = true; + privateUrl = "bittorrent.ganymede"; + }; copyparty = { enable = true; publicUrl = "up.williamsfam.us.com"; |
