CrOS/hosts/common/core/shell.nix
2025-10-27 12:07:45 -04:00

23 lines
323 B
Nix

{
config,
lib,
pkgs,
...
}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
enableBashCompletion = true;
autosuggestions = {
enable = true;
async = true;
};
syntaxHighlighting = {
enable = true;
};
shellAliases = {
lah = "ls -lah";
};
};
}