0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/systemd: Make the fsck unit depend only on FS packages.

This means that this unit no longer need to be rebuilt when the system path is changed.
This commit is contained in:
r-vdp 2023-06-18 12:00:11 +02:00
parent d3ea5244bd
commit c3fa4f9170
No known key found for this signature in database

View file

@ -587,7 +587,7 @@ in
# Some overrides to upstream units.
systemd.services."systemd-backlight@".restartIfChanged = false;
systemd.services."systemd-fsck@".restartIfChanged = false;
systemd.services."systemd-fsck@".path = [ config.system.path ];
systemd.services."systemd-fsck@".path = [ pkgs.util-linux ] ++ config.system.fsPackages;
systemd.services."systemd-makefs@" = {
restartIfChanged = false;
path = [ pkgs.util-linux ] ++ config.system.fsPackages;