Fediversity/panel/env.nix

16 lines
302 B
Nix

{
lib,
pkgs,
...
}:
{
BIN_PATH = lib.makeBinPath [
pkgs.lix
pkgs.bash
pkgs.coreutils
pkgs.openssh
pkgs.git
pkgs.jq # implicit dep of nixos-anywhere TF: https://github.com/nix-community/nixos-anywhere/issues/416
(import ../launch/tf.nix { inherit lib pkgs; })
];
}