dotfiles/nixos/systems/heater/networking.nix

10 lines
172 B
Nix
Raw Normal View History

{ pkgs, lib, inputs', secret, ... }:
{
networking = {
hostName = "heater";
useDHCP = false;
interfaces.enp3s0.useDHCP = true;
hostId = "3457b383";
};
}