Added bat && eza

This commit is contained in:
2026-04-11 14:22:06 -04:00
parent a868dd120b
commit 96b4dc216b
3 changed files with 145 additions and 0 deletions

20
modules/features/bat.nix Normal file
View File

@@ -0,0 +1,20 @@
{
flake.modules.homeManager.bat =
{ pkgs, ... }:
{
programs.bat = {
enable = true;
extraPackages = with pkgs.bat-extras; [
batgrep
batman
batpipe
batwatch
batdiff
prettybat
];
config = {
theme = "Catppuccin Mocha";
};
};
};
}