diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-07-10 16:41:48 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-07-10 16:41:48 +0530 |
commit | 83419fbadf1cf270a2642c1d29b43639c5c1ed2f (patch) | |
tree | be29970cd259adb9b22fa9f95ee9b825d549bc8c | |
parent | 130883dc2799c421edfa22ed1dc28e96fe5230ee (diff) |
configuration: add basic aliases for root shell
-rw-r--r-- | configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 40b5514..1c5601d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -54,6 +54,10 @@ in # system environment = { binsh = "${pkgs.dash}/bin/dash"; + shellAliases = { + ls = "ls --color=auto --group-directories-first"; + grep = "grep --color=auto"; + }; systemPackages = with pkgs; [ dash unzip |