nixos/machines/serverle/network.nix

12 lines
186 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [
8080 # aria
];
networking = {
domain = "stunkymonkey.de";
search = [ "stunkymonkey.de" ];
};
}