2024-11-16 17:37:09 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
2025-01-13 21:05:10 -08:00
|
|
|
}: let
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.less;
|
2025-01-13 21:05:10 -08:00
|
|
|
in {
|
|
|
|
options.marleyos.programs.less.enable = lib.mkEnableOption "less";
|
2024-11-16 17:37:09 -08:00
|
|
|
|
2025-01-13 21:05:10 -08:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-16 17:37:09 -08:00
|
|
|
programs.less.enable = true;
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
LESS = "-R";
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.lesspipe.enable = true;
|
|
|
|
};
|
|
|
|
}
|