CrOS/hosts/common/core/shell.nix
TheWanderingCrow 829e9b5265 remove lnup
2025-09-28 21:19:27 -04:00

21 lines
354 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs.zsh = {
enable = 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";
};
};
}