mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 22:30:25 +01:00
17 lines
465 B
Nix
17 lines
465 B
Nix
{ catppuccin, ... }:
|
|
{
|
|
# https://github.com/catppuccin/nix
|
|
imports = [
|
|
catppuccin.homeModules.catppuccin
|
|
];
|
|
|
|
catppuccin = {
|
|
# The default `enable` value for all available programs.
|
|
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";
|
|
};
|
|
}
|