Files
nixos-config/glasshouse-desktop/sys/network.nix
2024-10-10 03:53:44 -04:00

16 lines
233 B
Nix

{ pkgs, ... }:
{
networking = {
networkmanager.enable = true;
hostName = "glasshaus";
hosts = {
"192.168.1.163" = [ "glasshaus.info" ];
};
firewall = {
enable = true;
allowedTCPPorts = [ 30000 ];
};
};
}