summaryrefslogtreecommitdiffstats
path: root/lass/2configs/networkd.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-09-09 19:42:08 +0200
committermakefu <github@syntax-fehler.de>2023-09-09 19:42:08 +0200
commit29d72c898d674d2c18fc0f4a76b5e623de0c3dfe (patch)
treefc4b0695c986a1cda6f1fbbbcbe716e203c54fa3 /lass/2configs/networkd.nix
parente157ffa72856e4378aa23b096b2efff233f3cb3d (diff)
parent083229d0211096daec08673f743ccc45b1d8a0ac (diff)
Merge remote-tracking branch 'lass/master'
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 12ffe0bd7..000000000
--- 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;
- };
- };
-}