diff options
Diffstat (limited to 'modules/hm/sils/bat.nix')
| -rw-r--r-- | modules/hm/sils/bat.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/hm/sils/bat.nix b/modules/hm/sils/bat.nix new file mode 100644 index 0000000..5f7b967 --- /dev/null +++ b/modules/hm/sils/bat.nix @@ -0,0 +1,21 @@ +{ + config, + lib, + pkgs, + ... +}: let + cfg = config.sils.bat; +in { + options.sils.bat.enable = lib.mkEnableOption "bat"; + config = lib.mkIf cfg.enable { + programs.bat = { + enable = true; + extraPackages = with pkgs.bat-extras; [ + batdiff + batman + batgrep + batwatch + ]; + }; + }; +} |
