mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 18:59:47 +01:00
rbw: use pientry.binaryPath when available (#2153)
`pinentry_mac` does not use bin/pientry as path to its binary, instead it sets `binaryPath` pointing to the binary.
This commit is contained in:
parent
3f6cb409ca
commit
9ad0024d4d
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ let
|
||||||
if builtins.isString val then
|
if builtins.isString val then
|
||||||
"${pkgs.pinentry.${val}}/bin/pinentry"
|
"${pkgs.pinentry.${val}}/bin/pinentry"
|
||||||
else
|
else
|
||||||
"${val}/bin/pinentry";
|
"${val}/${val.binaryPath or "bin/pinentry"}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue