diff --git a/machines/bomba/services/default.nix b/machines/bomba/services/default.nix index 4fda18b..2707175 100644 --- a/machines/bomba/services/default.nix +++ b/machines/bomba/services/default.nix @@ -1,17 +1,14 @@ { ... }: { imports = [ - ./nginx.nix ./gitea.nix ./nextcloud.nix + ./nginx.nix ./ntfy.nix ./octoprint.nix + ./teamspeak.nix ./vaultwarden.nix ]; - services.teamspeak3 = { - enable = true; - openFirewall = true; - }; services.openssh.enable = true; } diff --git a/machines/bomba/services/teamspeak.nix b/machines/bomba/services/teamspeak.nix new file mode 100644 index 0000000..fb0b6f5 --- /dev/null +++ b/machines/bomba/services/teamspeak.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + services.teamspeak3 = { + enable = true; + openFirewall = true; + }; +}