1

Use systemd-networkd system module

This commit is contained in:
2023-05-24 14:43:26 +02:00
parent ea8769ffdc
commit a0e76cb49b
3 changed files with 34 additions and 228 deletions

View File

@ -19,34 +19,4 @@
# Proprietary graphics drivers
videoDrivers = ["intel"];
};
systemd.network = let
eth-interface = "enp*";
wireless-interface = "wlp*";
in {
enable = true;
# LAN
networks."50-ether" = {
enable = true;
# See man systemd.link, man systemd.netdev, man systemd.network
matchConfig = {
# This corresponds to the [MATCH] section
Name = eth-interface; # Match ethernet interface
};
# See man systemd.network
networkConfig = {
# This corresponds to the [NETWORK] section
DHCP = "yes";
};
linkConfig = {
# This corresponds to the [LINK] section
# RequiredForOnline = "routable";
};
};
};
}