summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2024-05-30 19:48:27 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2024-05-30 19:48:27 +0200
commit9c570593b8e61f65961345350ad738f175d67558 (patch)
treee1af63bcf20e48da92e479234ff9171ee728def6 /config
parente140aeee6430b5fe814e684ad863e21441d09c9c (diff)
dhcp: disable eth0
Diffstat (limited to 'config')
-rw-r--r--config/networking/services/dhcp.nix2
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;