mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
programs.zsh: generate export statements in zsh syntax
Use the new module lib.zsh to generate export statements in zsh syntax, using zsh arrays for lists. Being a zsh script, this seems more intuitive for .zshrc
This commit is contained in:
committed by
Nikita Uvarov
parent
62eb7ebeba
commit
6b5e0efd1e
@@ -11,7 +11,7 @@ let
|
||||
pluginsDir = if cfg.dotDir != null then
|
||||
relToDotDir "plugins" else ".zsh/plugins";
|
||||
|
||||
envVarsStr = config.lib.shell.exportAll cfg.sessionVariables;
|
||||
envVarsStr = config.lib.zsh.exportAll cfg.sessionVariables;
|
||||
|
||||
aliasesStr = concatStringsSep "\n" (
|
||||
mapAttrsToList (k: v: "alias ${k}='${v}'") cfg.shellAliases
|
||||
|
||||
Reference in New Issue
Block a user