10 lines
189 B
Nix
10 lines
189 B
Nix
{
|
|
programs.bash = {
|
|
enable = true;
|
|
shellAliases = {
|
|
rebuild = "sudo nixos-rebuild switch --flake";
|
|
gs = "git status";
|
|
ai = "aichat -r %shell% -e";
|
|
};
|
|
};
|
|
}
|