nix-config/hosts/nixos/porthos/networking.nix

23 lines
734 B
Nix
Raw Normal View History

# Networking configuration
{ ... }:
{
2021-02-07 11:46:22 +01:00
networking = {
hostName = "porthos"; # Define your hostname.
domain = "belanyi.fr"; # Define your domain.
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
useDHCP = true;
2021-02-07 11:46:22 +01:00
interfaces = {
eno1.useDHCP = true;
eno2.useDHCP = true;
2021-02-07 11:46:22 +01:00
};
};
# Which interface is used to connect to the internet
my.hardware.networking.externalInterface = "eno1";
}