depot/third_party/home-manager/modules/programs/less.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

32 lines
668 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.programs.less;
in {
meta.maintainers = [ maintainers.pamplemousse ];
options = {
programs.less = {
enable = mkEnableOption "less, opposite of more";
keys = mkOption {
type = types.lines;
default = "";
example = ''
s back-line
t forw-line
'';
description = ''
Extra configuration for {command}`less` written to
{file}`$XDG_CONFIG_HOME/lesskey`.
'';
};
};
};
config = mkIf cfg.enable {
home.packages = [ pkgs.less ];
xdg.configFile."lesskey".text = cfg.keys;
};
}