Files
nixos-configuration/shared/base/home-manager/shell/bat.nix

14 lines
172 B
Nix

{ theme, ... }:
{
catppuccin.bat = {
enable = true;
flavor = theme.flavor;
};
programs = {
bat.enable = true;
fish.shellAliases.cat = "bat";
};
}