1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-12 20:11:06 +01:00

programs.rclone: set Service.Type=notify

According to <https://rclone.org/commands/rclone_mount/#systemd>,
it should be possible to set `Type=notify` to ensure that `rclone`
is not marked as started until the mountpoint has actually been
successfully mounted.
This commit is contained in:
Kylie McClain 2025-07-28 06:00:42 -04:00 committed by Austin Horstman
parent feba2b2daa
commit 4896177e2c

View file

@ -344,6 +344,7 @@ in
};
Service = {
Type = "notify";
Environment = [
# fusermount/fusermount3
"PATH=/run/wrappers/bin"