aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/bat.nix
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2026-06-23 02:56:12 +0200
committerSilas Schöffel <sils@sils.li>2026-06-23 02:56:12 +0200
commit0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1 (patch)
tree978f54918d4cecb5af209f1e0655fc227c6d9987 /modules/hm/sils/bat.nix
parentuser: rename to jaki (diff)
downloadnix-config-0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1.zip
treewide: rename paths to jaki
Diffstat (limited to 'modules/hm/sils/bat.nix')
-rw-r--r--modules/hm/sils/bat.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/hm/sils/bat.nix b/modules/hm/sils/bat.nix
deleted file mode 100644
index 5f7b967..0000000
--- a/modules/hm/sils/bat.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- 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
- ];
- };
- };
-}