From d3ba585a490d9f9e544516f69fbe94acffe93898 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Tue, 14 May 2024 22:57:26 -0400 Subject: [PATCH] fixed aliases not building properly --- src/user/modules/bash/config/alias.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/user/modules/bash/config/alias.nix b/src/user/modules/bash/config/alias.nix index bf617aa..24b311f 100644 --- a/src/user/modules/bash/config/alias.nix +++ b/src/user/modules/bash/config/alias.nix @@ -1,10 +1,9 @@ { lib }: with lib; -mkForce { cd = "cd -L"; grep = "grep --color"; tree = "eza --tree --icons=never"; - lt = "eza --tree --icons=never"; + lt = mkForce "eza --tree --icons=never"; }