From 4692f4dfae4e435e54794f2caa72c0827f2c2f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 31 Dec 2025 17:35:20 +0100 Subject: [PATCH] nixos/network-interfaces: drop unused variable --- nixos/modules/tasks/network-interfaces.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 2a6d00296303..1c745bec5ec6 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -65,9 +65,6 @@ let } ); - # We must escape interfaces due to the systemd interpretation - subsystemDevice = interface: "sys-subsystem-net-devices-${escapeSystemdPath interface}.device"; - addrOpts = v: assert v == 4 || v == 6;