23 lines
335 B
Nix
23 lines
335 B
Nix
{ lib, ... }:
|
|
|
|
with lib; let
|
|
cfg = config.catppuccin;
|
|
in
|
|
|
|
{
|
|
imports = [
|
|
# ./bat
|
|
./btop
|
|
./dircolors
|
|
];
|
|
|
|
options.catppuccin = {
|
|
defaultTheme = mkOption {
|
|
type = types.enum [ "mocha" "macchiato" "frappe" "latte" ];
|
|
default = "mocha";
|
|
description = "Choose a catppuccin bat theme";
|
|
};
|
|
};
|
|
}
|
|
|