nix-config/home/bat.nix
Donovan Glover c00ebbd691
meta: Prefer home-manager module over env for bat
This works now that stylix switched to using the configuration file
instead of the environment variable.
2024-08-24 12:24:43 -04:00

12 lines
121 B
Nix

{ lib, ... }:
{
programs.bat = {
enable = true;
config = {
theme = lib.mkForce "base16";
};
};
}