mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
14 lines
200 B
Nix
14 lines
200 B
Nix
{pkgs, ...}: {
|
|
programs.bat = {
|
|
enable = true;
|
|
config = {
|
|
pager = "less -FR";
|
|
};
|
|
extraPackages = with pkgs.bat-extras; [
|
|
batman
|
|
batpipe
|
|
batgrep
|
|
];
|
|
};
|
|
}
|