summaryrefslogtreecommitdiff
path: root/config/terraria.nix
blob: 536bdf695a6d8201f534d3b07ce038c06d0e2345 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, lib, pkgs, ... }:
{
  nixpkgs = {
    config.allowUnfree = true;
    overlays = [ (import ../overlays/terraria-server.nix) ];
  };
  networking.firewall.allowedTCPPorts = [ 7777 ];

  environment.systemPackages = with pkgs; [ terraria-server ];
}