mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
68 lines
1.5 KiB
Nix
68 lines
1.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.programs.less;
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.pamplemousse ];
|
|
|
|
imports = [
|
|
(lib.mkRenamedOptionModule [ "programs" "less" "keys" ] [ "programs" "less" "config" ])
|
|
];
|
|
|
|
options = {
|
|
programs.less = {
|
|
enable = lib.mkEnableOption "less, opposite of more";
|
|
|
|
package = lib.mkPackageOption pkgs "less" { nullable = true; };
|
|
|
|
config = lib.mkOption {
|
|
type = lib.types.lines;
|
|
default = "";
|
|
example = ''
|
|
#command
|
|
s back-line
|
|
t forw-line
|
|
'';
|
|
description = ''
|
|
Configuration for {command}`less`, written to
|
|
{file}`$XDG_CONFIG_HOME/lesskey`.
|
|
'';
|
|
};
|
|
|
|
options = lib.mkOption {
|
|
type =
|
|
with lib.types;
|
|
attrsOf (oneOf [
|
|
bool
|
|
int
|
|
str
|
|
]);
|
|
default = { };
|
|
description = "GNU-style options to be set via {env}`$LESS`.";
|
|
example = {
|
|
RAW-CONTROL-CHARS = true;
|
|
quiet = true;
|
|
wheel-lines = 3;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."lesskey" = lib.mkIf (cfg.config != "") { text = cfg.config; };
|
|
|
|
programs.less.config = lib.mkIf (cfg.options != { }) (
|
|
lib.mkBefore ''
|
|
#env
|
|
LESS = ${lib.cli.toGNUCommandLineShell { } cfg.options}
|
|
''
|
|
);
|
|
};
|
|
}
|