1

Services/Teamspeak: Init with version v6.0.0.0-beta7

This commit is contained in:
2025-11-10 21:19:23 +01:00
parent 2d37068567
commit 2b5fd42908
3 changed files with 51 additions and 0 deletions

View File

@ -373,6 +373,7 @@
tidal-dl-ng
picard
handbrake
teamspeak6-client
# Office
kdePackages.wacomtablet # For xournalpp/krita

View File

@ -34,6 +34,7 @@
../services/nginx-proxy-manager.nix
../services/paperless.nix
../services/portainer-agent.nix
../services/teamspeak.nix
../services/tinymediamanager.nix
../services/whats-up-docker.nix
];

View File

@ -0,0 +1,49 @@
{
config,
lib,
pkgs,
...
}: let
teamspeakVersion = "v6.0.0-beta7";
in {
virtualisation.oci-containers.containers = {
teamspeak = {
image = "teamspeaksystems/teamspeak6-server:${teamspeakVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
# "9987:9987/udp"
# "30033:30033"
];
volumes = [
"teamspeak_data:/var/tsserver"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
TSSERVER_LICENSE_ACCEPTED = "accept";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}