NixOS standardization

This commit is contained in:
agryphus 2023-10-13 03:44:45 -04:00
parent c66efc268c
commit f174299ffd
9 changed files with 16 additions and 11 deletions

View file

@ -5,13 +5,13 @@
case "$PINENTRY_USER_DATA" in
dmenu)
exec /usr/bin/pinentry-dmenu "$@"
exec pinentry-dmenu "$@"
;;
rofi)
exec /usr/bin/pinentry-rofi "$@"
exec pinentry-rofi "$@"
;;
*)
exec /usr/bin/pinentry-curses "$@"
exec pinentry-curses "$@"
;;
esac