aboutsummaryrefslogtreecommitdiff
path: root/modules/teamspeak/default.nix
blob: 1864679b12fa0dd8c7b917f92ed765fcbf9b673e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, lib, pkgs, ... }:

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

  systemd.services.teamspeak3-server = {
    serviceConfig = {
      Restart = lib.mkForce "always";
    };
  };
}