From fd569046e81642bef74ffc15c5a67e2db27c6a1c Mon Sep 17 00:00:00 2001 From: Brian Ketelsen Date: Tue, 21 Mar 2023 08:39:25 -0400 Subject: [PATCH] feat: exa aliases --- core/shell.nix.tmpl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/shell.nix.tmpl b/core/shell.nix.tmpl index 6a5b0e85..2a87cb59 100644 --- a/core/shell.nix.tmpl +++ b/core/shell.nix.tmpl @@ -1,5 +1,9 @@ { pkgs, misc, ... }: { + {{ if eq .Config.Bling "high" }} + programs.exa.enableAliases = true; + {{ end }} + # {{ .Config.Shell }} {{ if eq .Config.Shell "bash" }} programs.bash.profileExtra = ". ~/.nix-profile/etc/profile.d/nix.sh";