dotfiles/catppuccin/default.nix

21 lines
341 B
Nix
Raw Normal View History

2023-02-10 07:46:37 +01:00
{lib, ...}:
2023-02-10 09:36:53 +01:00
with lib; {
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";
};
};
}