12 lines
241 B
Nix
12 lines
241 B
Nix
# 'cat' alternative
|
|
{
|
|
programs.bat = {
|
|
enable = true;
|
|
config.theme = "base16-256";
|
|
};
|
|
|
|
home.shellAliases.cat = "bat";
|
|
|
|
# Enabling this produces an uglier theme for some reason.
|
|
# options.stylix.targets.bat.enable = true;
|
|
}
|