Restructure

This commit is contained in:
Thomas Avé 2024-05-31 15:26:03 +02:00
parent 321bd28f35
commit aeda05a8d1
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{
home.packages = with pkgs; [
fzf
fzy
zoxide
curl
];
programs.zsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
shellAliases = {
ll = "ls -lhat";
};
history.size = 10000;
history.path = "${config.xdg.dataHome}/zsh/history";
};
}