From aa19ec523158b0c80c917f4ae5aa7bb9ce6bb19c Mon Sep 17 00:00:00 2001 From: Leon Schuermann Date: Mon, 4 May 2026 09:34:22 -0400 Subject: [PATCH] nixos-containers: fix dummyConfig localMacAddress default In a13b423085 ("nixos-containers: allow hard-coding container veth MAC address & add IPv6 SLAAC test case (#462775)") I had a typo in the `localMacAddress` setting used for the dummy container config to generate the systemd service template. I don't think this actually causes any breakage, but it's good to fix for consistency's sake nonetheless. --- nixos/modules/virtualisation/nixos-containers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/nixos-containers.nix b/nixos/modules/virtualisation/nixos-containers.nix index dd9177a5bd21..ea904528caec 100644 --- a/nixos/modules/virtualisation/nixos-containers.nix +++ b/nixos/modules/virtualisation/nixos-containers.nix @@ -520,7 +520,7 @@ let hostAddress6 = null; localAddress = null; localAddress6 = null; - localmacAddress = null; + localMacAddress = null; tmpfs = null; };