Unverified Commit 732a1dca authored by Luflosi's avatar Luflosi
Browse files

nixos/pay-respects: fix "(eval):1: parse error near `alias'"

The README of pay-respects recommends the following for Bash and Zsh:
```sh
eval "$(pay-respects bash --alias)"
eval "$(pay-respects zsh --alias)"
```
The code in the NixOS module is missing the quotes.
This causes "(eval):1: parse error near `alias'" for me (using Zsh) and the alias `f` does not work.
parent e6625a21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ let
    shell:
    if (shell != "fish") then
      ''
        eval $(${getExe finalPackage} ${shell} --alias ${cfg.alias})
        eval "$(${getExe finalPackage} ${shell} --alias ${cfg.alias})"
      ''
    else
      ''