feat(bat): configure theme

main
mandlm 2022-08-02 16:15:42 +02:00
parent dd9172020d
commit 3e45a34ecd
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 11 additions and 1 deletions

10
home-manager/bat.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, user, ... }:
{
programs = {
bat = {
enable = true;
config.theme = "Solarized (dark)";
};
};
}

View File

@ -7,7 +7,6 @@
packages = with pkgs; [
exa
bat
firefox
jq
htop
@ -47,5 +46,6 @@
home-manager/i3
./home-manager/rofi.nix
./home-manager/direnv.nix
./home-manager/bat.nix
];
}