8 lines
166 B
Nix
8 lines
166 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
networking.interfaces.eth0.useDHCP = true;
|
|
networking.hostName = "blade";
|
|
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
|
|
}
|