mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-08-22 22:51:00 +05:30
16 lines
234 B
Nix
16 lines
234 B
Nix
{...}: {
|
|
programs = {
|
|
aichat = {
|
|
enable = true;
|
|
settings = {
|
|
model = "gemini:gemini-2.0-flash-lite";
|
|
clients = [
|
|
{
|
|
type = "gemini";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|