summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/dhcpcd.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-29 17:34:43 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-29 17:39:32 +0100
commit1d104c792beff1eff7228d636ba149ed27325aa1 (patch)
treee8b7f97b869145bc6331426b4a6af3e0e26a17c5 /nixos/modules/services/networking/dhcpcd.nix
parent0695b68c8c3411fdb1ab1bad3b94b19d7ed33f25 (diff)
Remove the dhclient module
It's no longer used by NixOS (replaced by dhcpcd).
Diffstat (limited to 'nixos/modules/services/networking/dhcpcd.nix')
-rw-r--r--nixos/modules/services/networking/dhcpcd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/dhcpcd.nix b/nixos/modules/services/networking/dhcpcd.nix
index 48803511a5ea..07b5606eacaa 100644
--- a/nixos/modules/services/networking/dhcpcd.nix
+++ b/nixos/modules/services/networking/dhcpcd.nix
@@ -6,7 +6,7 @@ let
inherit (pkgs) dhcpcd;
- # Don't start dhclient on explicitly configured interfaces or on
+ # Don't start dhcpcd on explicitly configured interfaces or on
# interfaces that are part of a bridge.
ignoredInterfaces =
map (i: i.name) (filter (i: i.ipAddress != null) (attrValues config.networking.interfaces))