dotfiles/nixos/systems/heater/networking.nix

18 lines
244 B
Nix
Raw Normal View History

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