Files
shed/glasshouse-laptop/sys/network.nix
2024-10-12 02:34:23 -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 ];
};
};
}