aboutsummaryrefslogtreecommitdiff
path: root/nix/users/profiles/bat.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-07-21 08:21:06 -0700
committerFranck Cuny <franck@fcuny.net>2025-07-21 08:30:16 -0700
commit28b6dbb543ffbd3bfdc90a3b45835d784963175b (patch)
tree5b918d96743426a5355884ae3cbc77247abf2b04 /nix/users/profiles/bat.nix
parentinstall helpers for docker (diff)
downloadinfra-28b6dbb543ffbd3bfdc90a3b45835d784963175b.tar.gz
make the configuration more specific
Diffstat (limited to 'nix/users/profiles/bat.nix')
-rw-r--r--nix/users/profiles/bat.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/users/profiles/bat.nix b/nix/users/profiles/bat.nix
new file mode 100644
index 0000000..fb27397
--- /dev/null
+++ b/nix/users/profiles/bat.nix
@@ -0,0 +1,10 @@
+{ ... }:
+{
+ programs.bat = {
+ enable = true;
+ config = {
+ theme = "ansi";
+ pager = "less -FR";
+ };
+ };
+}