summary refs log tree commit diff
path: root/nixos/modules/system/boot/networkd.nix
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-12-06 17:57:22 +0100
committerGitHub <noreply@github.com>2019-12-06 17:57:22 +0100
commit47e5b157a2b98483eba002c5badca50bb96d4a26 (patch)
treec0bb7cb1f4bac676690f3a64d5d58f8099da178f /nixos/modules/system/boot/networkd.nix
parentec8bca84c9091f6bc54578b1524c1cd2ff038a56 (diff)
parent2c1281eb7ab54dd2b9ee0094a9719f7191a2d983 (diff)
downloadnixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.tar
nixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.tar.gz
nixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.tar.bz2
nixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.tar.lz
nixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.tar.xz
nixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.tar.zst
nixpkgs-47e5b157a2b98483eba002c5badca50bb96d4a26.zip
Merge pull request #75086 from flokli/nixos-networkd-advertise
nixos/networkd: add missing "Advertise" option
Diffstat (limited to 'nixos/modules/system/boot/networkd.nix')
-rw-r--r--nixos/modules/system/boot/networkd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix
index 226769f1059..73e5f8b5393 100644
--- a/nixos/modules/system/boot/networkd.nix
+++ b/nixos/modules/system/boot/networkd.nix
@@ -11,7 +11,7 @@ let
   checkLink = checkUnitConfig "Link" [
     (assertOnlyFields [
       "Description" "Alias" "MACAddressPolicy" "MACAddress" "NamePolicy" "Name" "OriginalName"
-      "MTUBytes" "BitsPerSecond" "Duplex" "AutoNegotiation" "WakeOnLan" "Port"
+      "MTUBytes" "BitsPerSecond" "Duplex" "AutoNegotiation" "WakeOnLan" "Port" "Advertise"
       "TCPSegmentationOffload" "TCP6SegmentationOffload" "GenericSegmentationOffload"
       "GenericReceiveOffload" "LargeReceiveOffload" "RxChannels" "TxChannels"
       "OtherChannels" "CombinedChannels"