This commit is contained in:
41666 2024-05-30 23:03:46 -04:00
parent 169964b69b
commit 36b583acb2
9 changed files with 99 additions and 137 deletions

1
nixos/hosts/ts3/.target Normal file
View file

@ -0,0 +1 @@
10.100.1.42

View file

@ -0,0 +1,16 @@
{ inputs, pkgs, config, lib, ... }: {
imports = [
../../templates/proxmox-lxc.nix
../../server.nix
../../features/dns-cache.nix
];
networking.hostName = "ts3";
system.stateVersion = "24.11";
nixpkgs.hostPlatform = "x86_64-linux";
services.teamspeak3 = {
enable = true;
openFirewall = true;
};
}