mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
12 lines
335 B
Nix
12 lines
335 B
Nix
{
|
|
programs.bash.enable = true;
|
|
programs.goto.enable = true;
|
|
programs.zsh.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileRegex home-files/.bashrc '^source \S*/share/goto.sh$'
|
|
assertFileExists home-files/.zshrc
|
|
assertFileRegex home-files/.zshrc '^source \S*/share/goto.sh$'
|
|
'';
|
|
}
|