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

8 lines
132 B
Nix
Raw Normal View History

2023-11-06 15:04:10 +01:00
{ pkgs, ... }:
2023-11-05 22:34:42 +01:00
{
programs.bat = {
enable = true;
2023-11-06 15:04:10 +01:00
config.theme = "base16";
# config.theme = "Monokai Extended";
2023-11-05 22:34:42 +01:00
};
}