mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
14 lines
255 B
Nix
14 lines
255 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Gemini AI CLI tool configuration
|
|
programs.gemini-cli = {
|
|
enable = true;
|
|
settings = {
|
|
"theme" = "Default";
|
|
"preferredEditor" = "nvim";
|
|
"autoAccept" = true;
|
|
};
|
|
defaultModel = "gemini-2.5-pro";
|
|
};
|
|
} |