nix-config/home/bat.nix

10 lines
155 B
Nix
Raw Normal View History

2021-02-20 15:13:37 +01:00
{ config, ... }:
{
programs.bat = {
enable = true;
config = {
pager = with config.home.sessionVariables; "${PAGER} ${LESS}";
};
};
}