Merge pull request #146967 from AndrewKvalheim/PermanentMACAddress

nixos/doc: improve example of renaming network interfaces
This commit is contained in:
Michele Guerini Rocco
2021-12-01 09:03:14 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -26,7 +26,7 @@ we assign the name `wan` to the interface with MAC address
```nix
systemd.network.links."10-wan" = {
matchConfig.MACAddress = "52:54:00:12:01:01";
matchConfig.PermanentMACAddress = "52:54:00:12:01:01";
linkConfig.Name = "wan";
};
```
@@ -32,7 +32,7 @@
</para>
<programlisting language="bash">
systemd.network.links.&quot;10-wan&quot; = {
matchConfig.MACAddress = &quot;52:54:00:12:01:01&quot;;
matchConfig.PermanentMACAddress = &quot;52:54:00:12:01:01&quot;;
linkConfig.Name = &quot;wan&quot;;
};
</programlisting>