home: add bat config
This commit is contained in:
parent
2718be6ac9
commit
270809ca25
|
@ -21,7 +21,6 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# shell usage
|
||||
bat
|
||||
fd
|
||||
ripgrep
|
||||
sd
|
||||
|
|
20
home/bat.nix
Normal file
20
home/bat.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.my.home.bat;
|
||||
batTheme = config.my.theme.batTheme;
|
||||
in
|
||||
{
|
||||
options.my.home.bat = with lib; {
|
||||
enable = (mkEnableOption "bat code display tool") // { default = true; };
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.bat = {
|
||||
enable = true;
|
||||
|
||||
config = {
|
||||
theme = batTheme.name;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./bat.nix
|
||||
./emacs.nix
|
||||
./env.nix
|
||||
./fish
|
||||
|
|
10
home/themes/bat.nix
Normal file
10
home/themes/bat.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ lib }:
|
||||
with lib;
|
||||
types.submodule {
|
||||
options = {
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
default = "";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -7,6 +7,10 @@ let
|
|||
type = import ./alacritty.nix { inherit lib; };
|
||||
default = {};
|
||||
};
|
||||
batTheme = mkOption {
|
||||
type = import ./bat.nix { inherit lib; };
|
||||
default = {};
|
||||
};
|
||||
i3Theme = mkOption {
|
||||
type = import ./i3.nix { inherit lib; };
|
||||
default = {};
|
||||
|
|
3
home/themes/solarizedLight/bat.nix
Normal file
3
home/themes/solarizedLight/bat.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
name = "Solarized (light)";
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
alacrittyTheme = import ./alacritty.nix;
|
||||
batTheme = import ./bat.nix;
|
||||
i3Theme = import ./i3.nix;
|
||||
i3BarTheme = import ./i3bar.nix;
|
||||
alacrittyTheme = import ./alacritty.nix;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue