nixos-config/modules/home/bat.nix

10 lines
137 B
Nix
Raw Normal View History

2023-11-06 16:07:57 +01:00
{ inputs, ... }:
2023-11-05 22:34:42 +01:00
{
2023-11-06 16:02:00 +01:00
programs.bat = {
2023-11-06 15:53:03 +01:00
enable = true;
config = {
pager = "less -FR";
2023-11-06 16:50:42 +01:00
theme = "Dracula";
2023-11-06 15:53:03 +01:00
};
};
2023-11-05 22:34:42 +01:00
}