diff options
-rw-r--r-- | hosts/tiamat/networking.nix | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/hosts/tiamat/networking.nix b/hosts/tiamat/networking.nix index 04a87680..1ee7d850 100644 --- a/hosts/tiamat/networking.nix +++ b/hosts/tiamat/networking.nix @@ -1,14 +1,6 @@ { - config, - lib, ... }: { - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; networking.hostName = "tiamat"; } +# vim: ts=2 |