This commit is contained in:
2026-07-12 15:25:55 -03:00
commit 29377d0c9a
160 changed files with 6138 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
{
options.custom = {
bat.enable = lib.mkEnableOption "enable bat - color cat alternative";
};
config = lib.mkIf config.custom.bat.enable {
programs.bat = {
enable = true;
config = {
theme = "ansi";
style = "numbers,changes";
};
};
};
}