programs.zsh.initContent

Content to be added to .zshrc.

To specify the order, use lib.mkOrder.

Common order values:

To specify both content in Early initialization and General configuration, use lib.mkMerge.

e.g.

initContent = let zshConfigEarlyInit = lib.mkOrder 500 "do something"; zshConfig = lib.mkOrder 1000 "do something"; in lib.mkMerge [ zshConfigEarlyInit zshConfig ];

Type
strings concatenated with "\n"
Default
""
Example
lib.mkOrder 1200 '''
  echo "Hello zsh initContent!"
''';
Declared
<home-manager/modules/programs/zsh>