10 lines
155 B
Nix
10 lines
155 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
programs.bat = {
|
||
|
enable = true;
|
||
|
config = {
|
||
|
pager = with config.home.sessionVariables; "${PAGER} ${LESS}";
|
||
|
};
|
||
|
};
|
||
|
}
|