diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2023-06-26 22:01:08 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2023-06-26 22:23:29 +0200 |
| commit | c7b7efb30112ce492569f8ddea591f14a5040f57 (patch) | |
| tree | 65032e1a3dbebc1b3b351515f419e7c7cfc27879 /config/networking/services/dhcp.nix | |
| parent | ffa8760638e20eee785f7ed4df9e2d56c18ffe53 (diff) | |
networking: detach enp3s0 from wan
Diffstat (limited to 'config/networking/services/dhcp.nix')
| -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 360eb66..e625a4d 100644 --- a/config/networking/services/dhcp.nix +++ b/config/networking/services/dhcp.nix @@ -4,7 +4,7 @@ let nets = config.personal.networking.networks; in { services.kea.dhcp4 = { enable = true; - settings = let subnets = with nets; [ wan iot ]; + settings = let subnets = with nets; [ wan iot eth0 ]; in { interfaces-config.interfaces = builtins.map (network: network.interface) subnets; |
