dotfiles/nixos/systems/heater/networking.nix

15 lines
182 B
Nix
Raw Normal View History

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