1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/goto/shell-initialization.nix
2025-08-06 10:57:16 -05:00

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$'
'';
}