nix-config/home/pager.nix

12 lines
190 B
Nix
Raw Normal View History

2021-02-20 14:12:57 +01:00
{ ... }:
{
programs.lesspipe.enable = true;
2021-02-20 14:46:58 +01:00
home.sessionVariables = {
# My default pager
PAGER = "less";
# Clear the screen on start and exit
LESS = "-R -+X -c";
};
2021-02-20 14:12:57 +01:00
}