From b790d363a99dc6d6b2e849ee857dbebcbb18b19c Mon Sep 17 00:00:00 2001 From: Chris Montgomery Date: Mon, 11 Sep 2023 20:10:28 -0400 Subject: [PATCH] fix(nnn|nu): shell aliases --- profiles/homeProfiles/nnn.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/homeProfiles/nnn.nix b/profiles/homeProfiles/nnn.nix index 1aa4830a0..3e702ec08 100644 --- a/profiles/homeProfiles/nnn.nix +++ b/profiles/homeProfiles/nnn.nix @@ -49,10 +49,12 @@ in { home.sessionVariables = { NNN_PREVIEWDIR = "${config.xdg.cacheHome}/nnn/previews"; + # TODO: please enable previews! why is this disabled? # USE_PISTOL = lib.optionalString enablePreviews "1"; }; programs.bash = {inherit shellAliases;}; programs.fish = {inherit shellAliases;}; + programs.nushell = {inherit shellAliases;}; programs.zsh = {inherit shellAliases;}; }