bond network config

This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-18 15:40:05 +02:00
parent 8e7aab6427
commit 5b1ff6ef26
3 changed files with 49 additions and 11 deletions

10
workstation/network.nix~ Normal file
View file

@ -0,0 +1,10 @@
{ plgs, configs, ... }:
{
systemd.network = {
enable = true;
networks."10-lan" = {
matchConfig.Name = "lan";
networkConfig.DHCP = "ipv4";
};
};
}