CrOS/hosts/common/core/shell.nix
TheWanderingCrow 169a79a2d7 updates
2025-10-19 09:06:58 -04:00

23 lines
416 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";
set-nixpkgs-upstream = "git remote add upstream https://github.com/NixOS/nixpkgs.git";
};
};
}