Fediversity/panel/env.nix

16 lines
375 B
Nix

{
lib,
pkgs,
...
}:
{
REPO_DIR = "/run/fedipanel/flake";
# 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
];
}