diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2024-05-30 19:48:27 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2024-05-30 19:48:27 +0200 |
| commit | 9c570593b8e61f65961345350ad738f175d67558 (patch) | |
| tree | e1af63bcf20e48da92e479234ff9171ee728def6 /config/networking | |
| parent | e140aeee6430b5fe814e684ad863e21441d09c9c (diff) | |
dhcp: disable eth0
Diffstat (limited to 'config/networking')
| -rw-r--r-- | config/networking/services/dhcp.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/networking/services/dhcp.nix b/config/networking/services/dhcp.nix index d27bbce..87ffc08 100644 --- a/config/networking/services/dhcp.nix +++ b/config/networking/services/dhcp.nix @@ -11,7 +11,7 @@ in { services.kea.dhcp4 = { enable = true; settings = let - subnets = with nets; [wan iot eth0]; + subnets = with nets; [wan iot]; in { interfaces-config = { interfaces = builtins.map (network: network.interface) subnets; |
