2019-02-11 06:57:10 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.bat;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-02-11 06:57:10 +01:00
|
|
|
meta.maintainers = [ maintainers.marsam ];
|
|
|
|
|
|
|
|
options.programs.bat = {
|
|
|
|
enable = mkEnableOption "bat, a cat clone with wings";
|
|
|
|
|
|
|
|
config = mkOption {
|
|
|
|
type = types.attrsOf types.str;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = { };
|
2019-02-11 06:57:10 +01:00
|
|
|
example = {
|
|
|
|
theme = "TwoDark";
|
|
|
|
pager = "less -FR";
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Bat configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.bat ];
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
xdg.configFile."bat/config" = mkIf (cfg.config != { }) {
|
|
|
|
text = concatStringsSep "\n"
|
|
|
|
(mapAttrsToList (n: v: ''--${n}="${v}"'') cfg.config);
|
2019-02-11 06:57:10 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|