mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
829e89a16f
Less clutter in the $HOME.
32 lines
689 B
Nix
32 lines
689 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</command> written to
|
|
<filename>$XDG_CONFIG_HOME/lesskey</filename>.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ pkgs.less ];
|
|
xdg.configFile."lesskey".text = cfg.keys;
|
|
};
|
|
}
|