Fediversity/panel/env.nix

18 lines
407 B
Nix

{
lib,
pkgs,
...
}:
{
REPO_DIR = builtins.path {
path = ../.;
name = "root";
};
# 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
];
}