Added more config for bat

This commit is contained in:
tylerzanekelley@gmail.com 2025-02-16 23:41:53 -06:00
parent 4943416647
commit 121ffb5466
3 changed files with 14 additions and 1 deletions

View File

@ -25,7 +25,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
appimage-run appimage-run
bat
brave brave
brightnessctl brightnessctl
cmatrix cmatrix

13
modules/home/bat.nix Normal file
View File

@ -0,0 +1,13 @@
{pkgs, ...}: {
programs.bat = {
enable = true;
config = {
pager = "less -FR";
};
extraPackages = with pkgs.bat-extras; [
batman
batpipe
batgrep
];
};
}

View File

@ -1,6 +1,7 @@
{...}: { {...}: {
imports = [ imports = [
./bash.nix ./bash.nix
./bat.nix
./btop.nix ./btop.nix
./emoji.nix ./emoji.nix
./fastfetch ./fastfetch