Added test for template and fixed check export for lib (#361)

This commit is contained in:
Alexander Nortung 2023-05-15 11:04:52 +02:00 committed by GitHub
parent ecaf80b7fd
commit 3600698aba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 40 additions and 9 deletions

View file

@ -0,0 +1,12 @@
{
inputs = {
nixvim.url = "path:../../..";
simple = {
url = "path:../../simple";
inputs.nixvim.follows = "nixvim";
inputs.flake-utils.follows = "nixvim/flake-utils";
};
};
outputs = inputs: inputs.simple;
}