dotnix/modules/home/bat.nix
2025-03-29 19:05:05 +01:00

15 lines
203 B
Nix

{ pkgs, ... }:
{
programs.bat = {
enable = true;
config = {
pager = "less -FR";
};
extraPackages = with pkgs.bat-extras; [
batman
batpipe
batgrep
];
};
}