nixos-config/home-manager/bat.nix

14 lines
179 B
Nix
Raw Normal View History

2022-08-18 19:15:03 +00:00
{ config, lib, pkgs, theme, ... }:
2022-08-02 14:15:42 +00:00
2022-08-18 19:15:03 +00:00
let
theme_name = "Solarized (${theme})";
in
2022-08-02 14:15:42 +00:00
{
programs = {
bat = {
enable = true;
2022-08-18 19:15:03 +00:00
config.theme = theme_name;
2022-08-02 14:15:42 +00:00
};
};
}