merge
This commit is contained in:
@@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user