aboutsummaryrefslogtreecommitdiffstats
path: root/home/trent/common/core/bash.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-05-21 15:54:05 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-05-21 15:54:05 -0700
commit082cb3a8847a57d04605f52c36951b7cae0b3868 (patch)
treeb628fe6db00b31fa43990f72987c6e40fa8b2709 /home/trent/common/core/bash.nix
parent7f73c9eee033fbc2febcdeb13d891439c8f792b8 (diff)
downloadnix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar
nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.gz
nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.bz2
nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.lz
nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.xz
nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.zst
nix-082cb3a8847a57d04605f52c36951b7cae0b3868.zip
Add some missing prometheus configuration
Diffstat (limited to 'home/trent/common/core/bash.nix')
-rw-r--r--home/trent/common/core/bash.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/home/trent/common/core/bash.nix b/home/trent/common/core/bash.nix
new file mode 100644
index 0000000..77f0cf4
--- /dev/null
+++ b/home/trent/common/core/bash.nix
@@ -0,0 +1,10 @@
+{
+ programs.bash = {
+ enable = true;
+ enableCompletion = true;
+ shellAliases = {
+ ll = "ls -alF --color=auto";
+ la = "ls -aF --color=auto";
+ };
+ };
+}