![Thiago Kenji Okada](/assets/img/avatar_default.png)
* ranger: stub tests * alacritty: stub tests * broot: stub tests * zsh: stub tests * vim-vint: stub tests
17 lines
363 B
Nix
17 lines
363 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./zsh-stubs.nix
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "echo *" ]; })
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "rm *" ]; })
|
|
];
|
|
|
|
config = {
|
|
programs.zsh.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"
|
|
'';
|
|
};
|
|
}
|