12 lines
187 B
Nix
12 lines
187 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.bat = {
|
|
enable = true;
|
|
extraPackages = with pkgs.bat-extras; [ batman ];
|
|
};
|
|
|
|
home.shellAliases = {
|
|
"cat" = "bat";
|
|
"man" = "batman";
|
|
};
|
|
}
|