Home Gen457 @ 2025-03-05-14:56

This commit is contained in:
Jonas Röger 2025-03-05 14:56:22 +01:00
parent ffe2c03263
commit fa898e2453

View File

@ -13,16 +13,18 @@ in {
nix-direnv.enable = true; nix-direnv.enable = true;
}; };
# fancy ls command
programs.lsd = {
enable = true;
enableAliases = true;
};
# Zsh # Zsh
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -l";
update = "sudo nixos-rebuild switch";
};
history.size = 10000; history.size = 10000;
history.path = "${config.xdg.dataHome}/zsh/history"; history.path = "${config.xdg.dataHome}/zsh/history";
oh-my-zsh = { oh-my-zsh = {