nix-config/hosts/minime/networking/uvm.nix

20 lines
336 B
Nix
Raw Normal View History

2025-01-12 13:45:55 +01:00
{ ... }: {
systemd.network = {
netdevs."10-uvm-br" = {
netdevConfig = {
Kind = bridge;
Name = "uvm-br";
};
};
networks."10-uvm-br" = {
matchConfig.Name = "uvm-br";
networkConfig = {
DHCPServer = false;
IPv6SendRA = true;
};
Address = [ ];
};
};
}