1
Fork 0
satellite/home/features/cli/bat.nix

11 lines
220 B
Nix
Raw Permalink Normal View History

2023-01-10 02:38:06 +01:00
{
2023-05-24 03:17:09 +02:00
# Enabling this produces an uglier theme for some reason.
2023-12-02 00:46:56 +01:00
# options.stylix.targets.bat.enable = true;
2023-01-10 02:38:06 +01:00
programs.bat = {
enable = true;
2023-05-24 03:17:09 +02:00
config.theme = "base16-256";
2023-01-10 02:38:06 +01:00
};
2023-12-02 00:46:56 +01:00
home.shellAliases.cat = "bat";
2023-01-10 02:38:06 +01:00
}