summaryrefslogtreecommitdiffstats
path: root/lass/2configs/networkd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lass/2configs/networkd.nix')
-rw-r--r--lass/2configs/networkd.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/lass/2configs/networkd.nix b/lass/2configs/networkd.nix
deleted file mode 100644
index 12ffe0bd..00000000
--- a/lass/2configs/networkd.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ config, lib, pkgs, ... }:
-{
- systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false;
- systemd.services.systemd-networkd.stopIfChanged = false;
- # Services that are only restarted might be not able to resolve when resolved is stopped before
- systemd.services.systemd-resolved.stopIfChanged = false;
-
- networking.useNetworkd = true;
- systemd.network = {
- enable = true;
- networks.wl0 = {
- matchConfig.Name = "wl0";
- DHCP = "yes";
- networkConfig = {
- IgnoreCarrierLoss = "3s";
- };
- dhcpV4Config.UseDNS = true;
- };
- };
-}