mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-08-24 20:23:55 +02:00
22 lines
746 B
Nix
22 lines
746 B
Nix
{ catppuccin, ... }:
|
|
{
|
|
# https://github.com/catppuccin/nix
|
|
imports = [
|
|
catppuccin.homeModules.catppuccin
|
|
];
|
|
|
|
catppuccin = {
|
|
# The default `enable` value for all available programs.
|
|
enable = true;
|
|
# nixpkgs renamed gemini-cli to antigravity-cli (which dropped catppuccin
|
|
# theme support); the v26.05 tag still references the old option name.
|
|
# Remove this line once the catppuccin input moves past the rename.
|
|
gemini-cli.enable = false;
|
|
cache.enable = true;
|
|
# one of "latte", "frappe", "macchiato", "mocha"
|
|
flavor = "mocha";
|
|
# one of "blue", "flamingo", "green", "lavender", "maroon", "mauve", "peach", "pink", "red", "rosewater", "sapphire", "sky", "teal", "yellow"
|
|
accent = "pink";
|
|
};
|
|
}
|