nixos-config/modules/home/bat/default.nix

10 lines
133 B
Nix
Raw Normal View History

2023-11-06 15:29:30 +01:00
{ config, pkgs, ... }:
2023-11-05 22:34:42 +01:00
{
2023-11-06 15:29:30 +01:00
programs.bat = {
enable = true;
config = {
theme = "Dracula";
italic-text = "always";
};
};
2023-11-05 22:34:42 +01:00
}