{
  lib,
  pkgs,
  ...
}:
let
  inherit (builtins) toString;
in
{
  REPO_DIR = toString ../.;
  # explicitly use nix, as e.g. lix does not have configurable-impure-env
  BIN_PATH = lib.makeBinPath [
    # explicitly use nix, as e.g. lix does not have configurable-impure-env
    pkgs.nix
    # nixops error maybe due to our flake git hook: executing 'git': No such file or directory
    pkgs.git
  ];
}