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 = [
./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;
}
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
services.teamspeak3 = {
enable = true;
openFirewall = true;
};
}