From 0e741291f1ea350c398302e4b212a28f5c77840a Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Thu, 18 Apr 2024 19:28:29 -0700 Subject: Add root to home manager --- home/root/common/core/bash.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 home/root/common/core/bash.nix (limited to 'home/root/common/core/bash.nix') diff --git a/home/root/common/core/bash.nix b/home/root/common/core/bash.nix new file mode 100644 index 0000000..77f0cf4 --- /dev/null +++ b/home/root/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"; + }; + }; +} -- cgit v1.2.3