mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
13 lines
212 B
Nix
13 lines
212 B
Nix
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
history.ignorePatterns = [
|
|
"echo *"
|
|
"rm *"
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"
|
|
'';
|
|
}
|