2021-02-06 15:35:38 +01:00
|
|
|
# Networking configuration
|
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
2021-02-07 11:46:22 +01:00
|
|
|
networking = {
|
|
|
|
hostName = "porthos"; # Define your hostname.
|
2021-02-08 10:59:41 +01:00
|
|
|
domain = "belanyi.fr"; # Define your domain.
|
2021-02-06 15:35:38 +01:00
|
|
|
|
2024-03-05 00:45:31 +01:00
|
|
|
# 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 = {
|
2024-03-05 00:45:31 +01:00
|
|
|
eno1.useDHCP = true;
|
|
|
|
eno2.useDHCP = true;
|
2021-02-07 11:46:22 +01:00
|
|
|
};
|
|
|
|
};
|
2021-02-18 01:09:57 +01:00
|
|
|
|
|
|
|
# Which interface is used to connect to the internet
|
2024-03-05 00:45:31 +01:00
|
|
|
my.hardware.networking.externalInterface = "eno1";
|
2021-02-06 15:35:38 +01:00
|
|
|
}
|