16 lines
214 B
Nix
16 lines
214 B
Nix
{pkgs, ...}: {
|
|
programs.bat = {
|
|
enable = true;
|
|
|
|
extraPackages = with pkgs.bat-extras; [
|
|
batdiff
|
|
batman
|
|
];
|
|
|
|
rose-pine.enable = true;
|
|
|
|
config = {
|
|
style = "auto";
|
|
};
|
|
};
|
|
}
|