aboutsummaryrefslogtreecommitdiff
path: root/modules/teamspeak/default.nix
blob: 60b56275dd6489e009e1aa7a6a2718c7c41362a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }:

{
  services.teamspeak3 =
    let
      ip = "178.63.224.12"; in
    {
      enable = true;
      voiceIP = ip;
      queryIP = ip;
      fileTransferIP = ip;
    };
}