configs/workstation/network.nix~

11 lines
174 B
Nix
Raw Normal View History

2024-08-18 15:40:05 +02:00
{ plgs, configs, ... }:
{
systemd.network = {
enable = true;
networks."10-lan" = {
matchConfig.Name = "lan";
networkConfig.DHCP = "ipv4";
};
};
}