14 lines
172 B
Nix
14 lines
172 B
Nix
|
{ theme, ... }:
|
||
|
|
||
|
{
|
||
|
catppuccin.bat = {
|
||
|
enable = true;
|
||
|
flavor = theme.flavor;
|
||
|
};
|
||
|
|
||
|
programs = {
|
||
|
bat.enable = true;
|
||
|
fish.shellAliases.cat = "bat";
|
||
|
};
|
||
|
}
|