mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
18 lines
310 B
Nix
18 lines
310 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
programs.lesspipe = {
|
||
|
enable = mkEnableOption "lesspipe preprocessor for less";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf config.programs.lesspipe.enable {
|
||
|
home.sessionVariables = {
|
||
|
LESSOPEN = "|${pkgs.lesspipe}/bin/lesspipe.sh %s";
|
||
|
};
|
||
|
};
|
||
|
}
|