flake/home/applications/bat/default.nix

9 lines
165 B
Nix
Raw Normal View History

2024-01-15 04:18:06 +00:00
{
2023-11-29 10:18:56 +00:00
programs.bat.enable = true;
home.sessionVariables = {
2024-01-20 16:51:27 +00:00
"PAGER" = "bat";
2023-11-29 10:18:56 +00:00
"MANPAGER" = "sh -c 'col -bx | bat -l man -p'";
"MANROFFOPT" = "-c";
};
}