me: it's like... uh... wait. I need to send an email to security@
me: it's like... uh... wait. I need to send an email to security@
```
{pkgs, lib, ...}: let
run = lib.mapAttrs (k: lib.getExe) pkgs;
in '' # these are all the same:
${pkgs.nu}/bin/nushell
${lib.getExe pkgs.nu}
${run.nu}
''
```
```
{pkgs, lib, ...}: let
run = lib.mapAttrs (k: lib.getExe) pkgs;
in '' # these are all the same:
${pkgs.nu}/bin/nushell
${lib.getExe pkgs.nu}
${run.nu}
''
```