configure bat, eza and yazi in home-manager

This commit is contained in:
wi11-holdsworth 2025-08-07 11:48:22 +10:00
parent e71f8a3b47
commit c6cbdebfe2
4 changed files with 354 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
config,
pkgs,
lib,
...
}:
let
feature = "bat";
in
{
config = lib.mkIf config.${feature}.enable {
programs.bat = {
enable = true;
config = {
theme = "Dracula";
};
};
};
imports = [ ];
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}