From 035a337eb1e066c622062ff55e24d82dfb7d9c11 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Fri, 7 Apr 2023 15:27:12 -0400 Subject: [PATCH] comment --- home/shellcommon.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/shellcommon.nix b/home/shellcommon.nix index 1a6a566..df91317 100644 --- a/home/shellcommon.nix +++ b/home/shellcommon.nix @@ -12,6 +12,7 @@ in { programs.bash = { inherit shellAliases; }; programs.zsh = { inherit shellAliases; }; + # Until https://github.com/nix-community/home-manager/pull/3529 programs.nushell.extraConfig = lib.concatStringsSep "\n" (lib.mapAttrsToList (k: v: "alias ${k} = ${v} ") shellAliases); }