Personal-use NixOS configuration
at main 17 lines 193 B view raw
1{ 2 imports = [ 3 ../../shared/common/bat.nix 4 ]; 5 6 programs.bat = { 7 config = { 8 color = "auto"; 9 10 theme = "base16"; 11 12 style = [ 13 "numbers" 14 ]; 15 }; 16 }; 17}