1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00

megasync: use getExe instead of getExe' (#6665)

This commit is contained in:
Gaétan Lepage 2025-03-20 02:41:06 +01:00 committed by GitHub
parent eb0f617aec
commit cfaa4426a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,7 +38,7 @@ in {
Service = { Service = {
Environment = Environment =
lib.optionals cfg.forceWayland [ "DO_NOT_UNSET_XDG_SESSION_TYPE=1" ]; lib.optionals cfg.forceWayland [ "DO_NOT_UNSET_XDG_SESSION_TYPE=1" ];
ExecStart = lib.getExe' cfg.package "megasync"; ExecStart = lib.getExe cfg.package;
}; };
}; };
}; };