infra/nix/hosts/z/modules/catppuccin/default.nix
2026-01-05 23:09:19 +01:00

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";
};
};
}