mirror of
https://github.com/nix-community/home-manager
synced 2024-10-31 16:29:44 +01:00
programs/zsh: properly escape shell aliases
Otherwise all aliases break that use single quotes inside. Already fixed in the nixpkgs module in 1e211a70cbdaf230a18ea4cb67a959039d5c2ddb.
This commit is contained in:
parent
f07510e2b6
commit
465d08d99f
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ let
|
|||
localVarsStr = config.lib.zsh.defineAll cfg.localVariables;
|
||||
|
||||
aliasesStr = concatStringsSep "\n" (
|
||||
mapAttrsToList (k: v: "alias ${k}='${v}'") cfg.shellAliases
|
||||
mapAttrsToList (k: v: "alias ${k}=${lib.escapeShellArg v}") cfg.shellAliases
|
||||
);
|
||||
|
||||
zdotdir = "$HOME/" + cfg.dotDir;
|
||||
|
|
Loading…
Reference in a new issue