forked from fediversity/fediversity
15 lines
365 B
Nix
15 lines
365 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
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
|
|
];
|
|
}
|