Files
nixos-config/glasshouse-desktop/sys/hardware/network.nix
2024-10-13 00:40:42 -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 ];
};
};
}