diff options
author | sinanmohd <sinan@firemail.cc> | 2023-07-10 16:41:48 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-07-10 16:41:48 +0530 |
commit | 58a50c74f65a1632d7102de4e3cfe13dab0273e3 (patch) | |
tree | be29970cd259adb9b22fa9f95ee9b825d549bc8c | |
parent | e59b3265add37b1c3df5f09f5f2b64212d13da9d (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 |