12 lines
180 B
Nix
12 lines
180 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.bat = {
|
|
enable = true;
|
|
extraPackages = with pkgs.bat-extras; [batdiff batman batgrep batwatch];
|
|
catppuccin.enable = true;
|
|
};
|
|
}
|