dotfiles/modules/home/apps/bat/default.nix
alejandro-angulo 0f2ac2be9d
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Updated lockfile
2025-01-16 19:04:06 -08:00

20 lines
305 B
Nix

{
config,
lib,
namespace,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.apps.bat;
in {
options.${namespace}.apps.bat = {
enable = mkEnableOption "bat";
};
config = mkIf cfg.enable {
catppuccin.bat.enable = true;
programs.bat.enable = true;
};
}