systemd: remove network-online dep from multi-user

This commit is contained in:
NullBite 2024-05-10 19:15:01 -04:00
parent 9321ec54e5
commit f4f8395e0e
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -135,6 +135,13 @@ in
};
boot.loader.systemd-boot.configurationLimit = lib.mkDefault 15;
# see:
# https://redd.it/vdz86j
# https://github.com/NixOS/nixpkgs/commit/15d761a525a025de0680b62e8ab79a9d183f313d
# https://discourse.nixos.org/t/why-does-multi-user-target-depend-on-network-online-target/33565
systemd.targets.network-online.wantedBy = lib.mkForce [];
})
];
}