5709b5f953
The corresponding variable is `HISTORY_IGNORE` described in zshparam(1).
22 lines
469 B
Nix
22 lines
469 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "echo *" ]; })
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "rm *" ]; })
|
|
];
|
|
|
|
config = {
|
|
programs.zsh.enable = true;
|
|
|
|
nixpkgs.overlays =
|
|
[ (self: super: { zsh = pkgs.writeScriptBin "dummy-zsh" ""; }) ];
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"
|
|
'';
|
|
};
|
|
}
|