• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
33 lines
922 B
Nix
33 lines
922 B
Nix
# https://github.com/sharkdp/bat
|
|
# https://github.com/eth-p/bat-extras
|
|
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
# Git modifications and file header (but no grid)
|
|
style = "changes,header";
|
|
# theme = "gruvbox-dark";
|
|
};
|
|
extraPackages = builtins.attrValues {
|
|
inherit (pkgs.bat-extras)
|
|
|
|
batgrep # search through and highlight files using ripgrep
|
|
batdiff # Diff a file against the current git index, or display the diff between to files
|
|
batman # read manpages using bat as the formatter
|
|
;
|
|
};
|
|
};
|
|
|
|
# Avoid [bat error]: The binary caches for the user-customized syntaxes and themes in
|
|
# '/home/<user>/.cache/bat' are not compatible with this version of bat (0.25.0).
|
|
home.activation.batCacheRebuild = {
|
|
after = [ "linkGeneration" ];
|
|
before = [ ];
|
|
data = ''
|
|
${pkgs.bat}/bin/bat cache --build
|
|
'';
|
|
};
|
|
|
|
}
|