nichts/modules/system/os/systemd/module.nix

8 lines
265 B
Nix
Raw Normal View History

{pkgs, ...}: {
config.systemd = {
2025-03-18 13:54:04 +01:00
# faster startup
targets.network-online.wantedBy = pkgs.lib.mkForce []; # Normally ["multi-user.target"]
services.NetworkManager-wait-online.wantedBy = pkgs.lib.mkForce []; # Normally ["network-online.target"]
};
}