blob: 40f6de474fa52cec4dc3f1423908c28a2806b93d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{
flake-compat ? ../../default.nix,
# Required to be duplicated since --arg autocall is HAUNTED
# See: https://git.lix.systems/lix-project/lix/issues/263
copySourceTreeToStore ? true,
useBuiltinsFetchTree ? false,
}:
(import flake-compat {
src = ./.;
inherit copySourceTreeToStore useBuiltinsFetchTree;
}).defaultNix
|