mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
18 lines
270 B
Nix
18 lines
270 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
initContent = "fastfetch\n";
|
|
shellAliases = {
|
|
".." = "z ..";
|
|
grep = "rg";
|
|
ll = "ls -alF";
|
|
la = "ls -A";
|
|
l = "ls -CF";
|
|
ls = "ls -hA -s --color";
|
|
};
|
|
};
|
|
}
|