nixos-config/home-manager/modules/bat/default.nix
Erwin Boskma 4cd0f83ce8
Some checks failed
/ check (push) Failing after 2m46s
Run nixfmt
2024-02-05 11:46:52 +01:00

21 lines
389 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.eboskma.programs.bat;
in
{
options.eboskma.programs.bat = {
enable = mkEnableOption "enable bat";
};
config = mkIf cfg.enable {
programs.bat = {
enable = true;
config = {
theme = "Monokai Extended Bright";
pager = "less -FR";
map-syntax = [ "*.heex:HTML (EEx)" ];
};
};
};
}