forked from Fediversity/Fediversity
21 lines
473 B
Nix
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; })
|
|
];
|
|
}
|