nixos-config/modules/home/bat.nix

11 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";
2024-06-21 09:44:22 +02:00
theme = "base16";
2023-11-06 15:53:03 +01:00
};
};
2024-06-21 09:44:22 +02:00
}