Skip to content

Instantly share code, notes, and snippets.

@heywoodlh
Created April 14, 2023 20:08
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Example of Nix's option expansion
{
programs.zsh.enable = true;
programs.zsh.enableAutosuggestions = true;
programs.zsh.envExtra = ''
export MYVAR="true"
export MYVAR2="false"
'';
}
{
programs.zsh = {
enable = true;
enableAutosuggestions = true;
envExtra = ''
export MYVAR="true"
export MYVAR2="false"
'';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment