nix-files/hosts/common/programs/less.nix
Colin 083f743c1f remove nixpkgs less defaults and manage PAGER myself
this lets me avoid the lesspipe cross failures, notably
2024-02-29 15:18:51 +00:00

7 lines
67 B
Nix

{ ... }:
{
sane.programs.less = {
env.PAGER = "less";
};
}