diff options
| author | Ilan Joselevich <personal@ilanjoselevich.com> | 2023-08-14 11:19:41 +0300 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-09-29 05:01:32 +0000 |
| commit | c3d360f2fd40c72ae4c327658b29410d74d292b7 (patch) | |
| tree | 202e9f7535fc80a69e8d4c2514a7a785088d142c | |
| parent | nixos/picom: mkPackageOption -> mkPackageOptionMD (diff) | |
| download | nixpkgs-origin/backport-248390-to-release-23.05.tar.gz | |
nixos/picom: use lib.getExeorigin/backport-248390-to-release-23.05
Co-authored-by: Jian Lin <75130626+jian-lin@users.noreply.github.com>
(cherry picked from commit e0fad0515b7821648183363f4efb616adfafc429)
| -rw-r--r-- | nixos/modules/services/x11/picom.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/picom.nix b/nixos/modules/services/x11/picom.nix index 91463724c072..3df0ea9e60bb 100644 --- a/nixos/modules/services/x11/picom.nix +++ b/nixos/modules/services/x11/picom.nix @@ -303,7 +303,7 @@ in { }; serviceConfig = { - ExecStart = "${cfg.package}/bin/picom --config ${configFile}"; + ExecStart = "${getExe cfg.package} --config ${configFile}"; RestartSec = 3; Restart = "always"; }; |
