aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/config.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-29 06:54:49 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-29 06:54:49 -0500
commite29dd8a2283399b7e046937340509d5aec4b52ba (patch)
treeaa679e70fe55cb620698ab1695eadf23f8a2cdba /hosts/ganymede/config.nix
parentd2aecd69c17fa64305c07333686576152432993d (diff)
changes
Diffstat (limited to 'hosts/ganymede/config.nix')
-rw-r--r--hosts/ganymede/config.nix40
1 files changed, 9 insertions, 31 deletions
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;