nixos/systemd: Add util-linux to systemd-mkswap's path

This commit is contained in:
Will Fancher 2023-07-29 14:01:11 -04:00
parent 66ce081faf
commit 7a3730f901

View File

@ -597,6 +597,11 @@ in
# drop-in in /etc, it does apply.
overrideStrategy = "asDropin";
};
systemd.services."systemd-mkswap@" = {
restartIfChanged = false;
path = [ pkgs.util-linux ];
overrideStrategy = "asDropin";
};
systemd.services.systemd-random-seed.restartIfChanged = false;
systemd.services.systemd-remount-fs.restartIfChanged = false;
systemd.services.systemd-update-utmp.restartIfChanged = false;