diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2025-04-09 09:14:43 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2025-04-09 09:14:43 -0700 |
| commit | 838c5f367c65e12a918bd3cb8f05e45b3538ee60 (patch) | |
| tree | 3526d99f292ff9451f64601c2dc98cd07e8b87a4 /home/don/common/core/bash.nix | |
| parent | 81d8bca206fcd5fa0f86fd5a68edaf41aaf60966 (diff) | |
| download | nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.tar nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.tar.gz nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.tar.bz2 nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.tar.lz nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.tar.xz nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.tar.zst nix-838c5f367c65e12a918bd3cb8f05e45b3538ee60.zip | |
Add host fangorn
Diffstat (limited to 'home/don/common/core/bash.nix')
| -rw-r--r-- | home/don/common/core/bash.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/home/don/common/core/bash.nix b/home/don/common/core/bash.nix new file mode 100644 index 0000000..77f0cf4 --- /dev/null +++ b/home/don/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"; + }; + }; +} |
