programs.zsh.siteFunctions
Home-Manager option
Functions that are added to the Zsh environment and are subject to autoloading. The key is the name and the value is the body of the function to be autoloaded. They are also already marked for autoloading through autoload -Uz.
type: attribute set of strings concatenated with “\n”Default
{ }Example
declared in: <home-manager/modules/programs/zsh>source unavailable{ mkcd = '' mkdir --parents "$1" && cd "$1" ''; }