2.home-manager/tests/modules/programs/zsh/history-ignore-pattern.nix
2025-10-26 15:43:53 -05:00

13 lines
212 B
Nix

{
programs.zsh = {
enable = true;
history.ignorePatterns = [
"echo *"
"rm *"
];
};
nmt.script = ''
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"
'';
}