dotfiles/catppuccin/default.nix

23 lines
375 B
Nix
Raw Normal View History

2023-02-10 07:46:37 +01:00
{lib, ...}:
with lib; let
cfg = config.catppuccin;
2023-02-10 07:46:37 +01:00
in {
imports = [
./bat
./btop
# ./dunst
./dircolors
./k9s
# ./lsd
./vscode
];
options.catppuccin = {
defaultTheme = mkOption {
2023-02-10 07:46:37 +01:00
type = types.enum ["mocha" "macchiato" "frappe" "latte"];
default = "mocha";
description = "Choose a catppuccin bat theme";
};
};
}