CrOS/hosts/common/core/shell.nix
2025-07-27 18:00:44 -04:00

23 lines
506 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";
nup = "sudo nixos-rebuild switch --flake github:TheWanderingCrow/CrOS";
lnup = "sudo nixos-rebuild switch --flake ."; # Local test rebuilds
};
};
}