Lots of refactoring

This commit is contained in:
Lauren Lagarde 2025-03-09 22:53:51 -05:00
parent 2f65f8fcba
commit 70e37a959e
46 changed files with 635 additions and 400 deletions

View file

@ -0,0 +1,23 @@
{ ... }: {
networking.useNetworkd = true;
systemd.network = {
enable = true;
netdevs."20-br0".netdevConfig = {
Kind = "bridge";
Name = "br0";
};
networks = {
"40-br0" = {
matchConfig.Name = "br0";
bridgeConfig = {};
linkConfig = {
RequiredForOnline = "routable";
};
networkConfig = {
DHCP = "ipv4";
IPv6AcceptRA = true;
};
};
};
};
}