reNixos/hand7s/programs/bat.nix
2025-04-27 12:47:02 +03:00

10 lines
163 B
Nix

{...}: {
programs = {
bat = {
enable = true;
config = {
pager = "less -FR";
};
};
};
}