1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
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 *)'"
'';
}