Files
nixos-at-home/hosts/blade/networking.nix
2026-05-31 11:03:24 +01:00

8 lines
166 B
Nix

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