First commit

This commit is contained in:
Lomig 2025-08-21 11:21:15 +02:00
parent 9532c89e63
commit ca0610b675
13 changed files with 597 additions and 40 deletions

20
apps/zsh.nix Normal file
View file

@ -0,0 +1,20 @@
{ 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";
};
};
}