zaneyos/modules/home/bat.nix

14 lines
200 B
Nix
Raw Normal View History

2025-02-17 06:41:53 +01:00
{pkgs, ...}: {
programs.bat = {
enable = true;
config = {
pager = "less -FR";
};
extraPackages = with pkgs.bat-extras; [
batman
batpipe
batgrep
];
};
}