14 lines
185 B
Nix
14 lines
185 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
aichat
|
|
glow
|
|
];
|
|
|
|
programs.fish.shellAliases = {
|
|
vibe = "aichat -c";
|
|
clank = "aichat -e";
|
|
slop = "aichat";
|
|
};
|
|
}
|