refactor(bomba): separate teamspeak service

This commit is contained in:
2026-05-23 14:14:53 +02:00
parent de290efc06
commit 1797c65131
2 changed files with 9 additions and 5 deletions
+2 -5
View File
@@ -1,17 +1,14 @@
{ ... }: { ... }:
{ {
imports = [ imports = [
./nginx.nix
./gitea.nix ./gitea.nix
./nextcloud.nix ./nextcloud.nix
./nginx.nix
./ntfy.nix ./ntfy.nix
./octoprint.nix ./octoprint.nix
./teamspeak.nix
./vaultwarden.nix ./vaultwarden.nix
]; ];
services.teamspeak3 = {
enable = true;
openFirewall = true;
};
services.openssh.enable = true; services.openssh.enable = true;
} }
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
services.teamspeak3 = {
enable = true;
openFirewall = true;
};
}