mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 18:26:54 +00:00
14 lines
234 B
Nix
14 lines
234 B
Nix
|
{
|
||
|
programs = {
|
||
|
zsh.enable = true;
|
||
|
pyenv.enable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.zshrc
|
||
|
assertFileContains \
|
||
|
home-files/.zshrc \
|
||
|
'eval "$(@pyenv@/bin/pyenv init - zsh)"'
|
||
|
'';
|
||
|
}
|