Fediversity/panel/env.nix
2025-04-09 17:00:20 +02:00

21 lines
473 B
Nix

{
lib,
pkgs,
...
}:
let
inherit (builtins) toString;
in
{
# locally: use a fixed relative reference, so we can use our newest files without copying to the store
REPO_DIR = toString ../.;
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; })
];
}