[nix] Fix indention and add UseDomains to the correct DHCPv4 section

This commit is contained in:
Sebastian Schulze 2022-08-09 09:53:17 +02:00
parent faf8de46dc
commit e5af034edc
No known key found for this signature in database
GPG Key ID: F6BA63C6A7D3044E
1 changed files with 12 additions and 6 deletions

View File

@ -54,39 +54,45 @@
networks = {
"100-ethernet" = {
matchConfig.Name = "ethernet";
DHCP = "yes";
DHCP = "yes";
networkConfig = {
IPv6AcceptRA = true;
LinkLocalAddressing = "yes";
};
dhcpConfig = {
dhcpV4Config = {
UseDomains = true;
};
dhcpConfig = {
UseDNS = true;
};
};
"100-dorhamm-docking" = {
matchConfig.Name = "dorhamm-docking";
DHCP = "yes";
DHCP = "yes";
networkConfig = {
IPv6AcceptRA = true;
LinkLocalAddressing = "yes";
};
dhcpConfig = {
dhcpV4Config = {
UseDomains = true;
};
dhcpConfig = {
UseDNS = true;
};
};
"100-wifi" = {
matchConfig.Name = "wifi";
DHCP = "yes";
DHCP = "yes";
networkConfig = {
IPv6AcceptRA = true;
LinkLocalAddressing = "yes";
};
dhcpConfig = {
dhcpV4Config = {
UseDomains = true;
};
dhcpConfig = {
UseDNS = true;
};
};