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

8 lines
131 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 = {
2023-11-06 15:23:20 +01:00
enable = true
config .theme = "base16"
2023-11-06 15:04:10 +01:00
# config.theme = "Monokai Extended";
2023-11-05 22:34:42 +01:00
};
}