2019-02-11 06:57:10 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.bat;
|
|
|
|
|
2023-04-18 16:57:55 +02:00
|
|
|
package = pkgs.bat;
|
|
|
|
|
2021-08-12 21:24:19 +02:00
|
|
|
toConfigFile = generators.toKeyValue {
|
|
|
|
mkKeyValue = k: v: "--${k}=${lib.escapeShellArg v}";
|
|
|
|
listsAsDuplicateKeys = true;
|
|
|
|
};
|
|
|
|
|
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 {
|
2021-08-12 21:24:19 +02:00
|
|
|
type = with types; attrsOf (either str (listOf str));
|
2020-02-02 00:39:17 +01:00
|
|
|
default = { };
|
2019-02-11 06:57:10 +01:00
|
|
|
example = {
|
|
|
|
theme = "TwoDark";
|
|
|
|
pager = "less -FR";
|
2021-08-12 21:24:19 +02:00
|
|
|
map-syntax = [ "*.jenkinsfile:Groovy" "*.props:Java Properties" ];
|
2019-02-11 06:57:10 +01:00
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
Bat configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-11-06 00:57:15 +01:00
|
|
|
extraPackages = mkOption {
|
|
|
|
type = types.listOf types.package;
|
|
|
|
default = [ ];
|
|
|
|
example = literalExpression
|
|
|
|
"with pkgs.bat-extras; [ batdiff batman batgrep batwatch ];";
|
|
|
|
description = ''
|
|
|
|
Additional bat packages to install.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-04-21 21:26:20 +02:00
|
|
|
themes = mkOption {
|
|
|
|
type = types.attrsOf types.lines;
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2020-04-21 21:26:20 +02:00
|
|
|
{
|
|
|
|
dracula = builtins.readFile (pkgs.fetchFromGitHub {
|
|
|
|
owner = "dracula";
|
|
|
|
repo = "sublime"; # Bat uses sublime syntax for its themes
|
|
|
|
rev = "26c57ec282abcaa76e57e055f38432bd827ac34e";
|
|
|
|
sha256 = "019hfl4zbn4vm4154hh3bwk6hm7bdxbr1hdww83nabxwjn99ndhv";
|
|
|
|
} + "/Dracula.tmTheme");
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Additional themes to provide.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-02-11 06:57:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2023-04-18 16:57:55 +02:00
|
|
|
home.packages = [ package ] ++ cfg.extraPackages;
|
2019-02-11 06:57:10 +01:00
|
|
|
|
2020-04-21 21:26:20 +02:00
|
|
|
xdg.configFile = mkMerge ([{
|
2021-08-12 21:24:19 +02:00
|
|
|
"bat/config" =
|
|
|
|
mkIf (cfg.config != { }) { text = toConfigFile cfg.config; };
|
2020-04-21 21:26:20 +02:00
|
|
|
}] ++ flip mapAttrsToList cfg.themes
|
|
|
|
(name: body: { "bat/themes/${name}.tmTheme" = { text = body; }; }));
|
2023-04-18 16:57:55 +02:00
|
|
|
|
|
|
|
home.activation.batCache = hm.dag.entryAfter [ "linkGeneration" ] ''
|
|
|
|
$VERBOSE_ECHO "Rebuilding bat theme cache"
|
|
|
|
$DRY_RUN_CMD ${lib.getExe package} cache --build
|
|
|
|
'';
|
2019-02-11 06:57:10 +01:00
|
|
|
};
|
|
|
|
}
|