nixos-config/apps/zsh.nix
2025-08-21 11:21:15 +02:00

20 lines
382 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true ;
enableCompletion = true ;
history = {
append = true ;
extended = true ;
findNoDups = true ;
ignoreAllDups = true ;
ignoreSpace = true ;
ignorePatterns = [ "rm *" "cd *" "ls *" ] ;
saveNoDups = false ;
};
shellGlobalAliases = {
G = "| grep";
M = "| more";
};
};
}