Files
nixos-config/modules/home/shell/aichat.nix

16 lines
234 B
Nix

{...}: {
programs = {
aichat = {
enable = true;
settings = {
model = "gemini:gemini-2.0-flash-lite";
clients = [
{
type = "gemini";
}
];
};
};
};
}