This commit is contained in:
Sridhar Ratnakumar 2023-04-07 15:27:12 -04:00
parent 6974f6d711
commit 035a337eb1

View file

@ -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);
}