Fediversity/panel/env.nix
2025-04-12 10:27:11 +02:00

17 lines
273 B
Nix

{
lib,
pkgs,
...
}:
{
BIN_PATH = lib.makeBinPath [
pkgs.lix
pkgs.bash
pkgs.coreutils
pkgs.openssh
pkgs.git
pkgs.gnugrep # used in terraform-nixos
(import ../launch/tf.nix { inherit lib pkgs; })
];
TF_VARS = lib.strings.toJSON { };
}