Bruno BELANYI
5d3160fb0d
OVH/Kimsufi are deprecating my current server by the end of the year. So let's migrate to a new host. This was more painful than initially planned, OVH introduced a change to their rescue system which messes with the NixOS installation [1]. In the end I used a kexec image [2] to run the installation. [1]: https://github.com/NixOS/nix/issues/7790 [2]: https://github.com/nix-community/nixos-images
23 lines
734 B
Nix
23 lines
734 B
Nix
# Networking configuration
|
|
{ ... }:
|
|
|
|
{
|
|
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;
|
|
interfaces = {
|
|
eno1.useDHCP = true;
|
|
eno2.useDHCP = true;
|
|
};
|
|
};
|
|
|
|
# Which interface is used to connect to the internet
|
|
my.hardware.networking.externalInterface = "eno1";
|
|
}
|