2021-05-01 22:33:45 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "echo *" ]; })
|
|
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "rm *" ]; })
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.zsh = { };
|
2021-05-01 22:33:45 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|