home: add bat config

This commit is contained in:
Antoine Martin 2021-07-29 00:07:33 +02:00
parent 2718be6ac9
commit 270809ca25
7 changed files with 40 additions and 2 deletions

10
home/themes/bat.nix Normal file
View file

@ -0,0 +1,10 @@
{ lib }:
with lib;
types.submodule {
options = {
name = mkOption {
type = types.str;
default = "";
};
};
}