Revert "23.11: remove workaround for network-online.target"

This reverts commit 6a24fbfacf.
This commit is contained in:
Casper V. Kristensen 2023-12-13 20:25:40 +01:00
parent 1767b79e74
commit c68b049782

View file

@ -17,4 +17,12 @@
{ directory = "/etc/NetworkManager/system-connections"; user = "root"; group = "root"; mode = "0700"; }
];
};
# systemd-networkd-wait-online can timeout and fail if there are no network
# interfaces available for it to manage. When systemd-networkd is enabled but
# a different service is responsible for managing the system's internet
# connection (for example, NetworkManager), this service is unnecessary and
# can be disabled.
# https://search.nixos.org/options?channel=23.11&show=systemd.network.wait-online.enable
systemd.network.wait-online.enable = false;
}