mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
14 lines
271 B
Nix
14 lines
271 B
Nix
|
{
|
||
|
programs = {
|
||
|
fish.enable = true;
|
||
|
pyenv.enable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/fish/config.fish
|
||
|
assertFileContains \
|
||
|
home-files/.config/fish/config.fish \
|
||
|
'@pyenv@/bin/pyenv init - fish | source'
|
||
|
'';
|
||
|
}
|