Fediversity/panel/env.nix

16 lines
212 B
Nix

{
lib,
pkgs,
...
}:
{
BIN_PATH = lib.makeBinPath [
pkgs.lix
pkgs.bash
pkgs.coreutils
pkgs.openssh
pkgs.git
pkgs.jaq # tf
(import ../launch/tf.nix { inherit lib pkgs; })
];
}