infrastructure/home/shell/bat.nix

12 lines
188 B
Nix
Raw Normal View History

2024-06-15 14:39:17 +00:00
{pkgs, ...}: {
programs.bat = {
enable = true;
2023-12-15 15:18:36 +00:00
extraPackages = with pkgs.bat-extras; [batman];
};
2023-12-30 22:50:34 +00:00
programs.fish.shellAliases = {
cat = "bat";
man = "batman";
};
}