From 63fe0db78a3b9767e0c90ba5272050b3bb638139 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Wed, 19 Jun 2024 15:34:11 -0400 Subject: [PATCH] home/bash: alias cat to bat --- homeManagerModules/apps/bash/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homeManagerModules/apps/bash/default.nix b/homeManagerModules/apps/bash/default.nix index ceea6eb9..017b8993 100644 --- a/homeManagerModules/apps/bash/default.nix +++ b/homeManagerModules/apps/bash/default.nix @@ -23,6 +23,9 @@ initExtra = '' export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ " ''; + shellAliases = { + cat = lib.getExe pkgs.bat; + }; }; }; }