server/programs/less.nix
Jana Dönszelmann ae9854f178
Some checks failed
/ lint (push) Failing after 30s
fish and jj
2026-03-24 08:41:38 +01:00

22 lines
536 B
Nix

inputs@{ machine, ... }:
{
imports = machine.program {
name = "less";
inherit inputs;
requirements = [ "cli" ];
home-config =
{ pkgs, ... }:
{
home.packages = with pkgs; [ less ];
programs.less = {
enable = true;
config = ''
#command
#env
LESS=--quit-if-one-screen --ignore-case --long-prompt --tabs=4 --redraw-on-quit --use-color --RAW-CONTROL-CHARS --chop-long-lines --exit-follow-on-close
'';
};
};
};
}