about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-14 12:51:44 +0200
committerSoispha <soispha@vhack.eu>2023-05-14 12:51:44 +0200
commita2fa552ce2c9dffd2123e901a9197381628cb5fd (patch)
tree51b059cd657850ca0c68b1c34d8932eb584bd488
parentFix(system/network): Set networks for netdev devices (diff)
downloadnixos-config-a2fa552ce2c9dffd2123e901a9197381628cb5fd.tar.gz
nixos-config-a2fa552ce2c9dffd2123e901a9197381628cb5fd.zip
Fix(hosts/tiamat): Remove outdated network config
-rw-r--r--hosts/tiamat/networking.nix10
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