nix-community.nixvim/templates/_wrapper/simple/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
304 B
Nix
Raw Normal View History

{
inputs = {
nixvim.url = "path:../../..";
simple = {
url = "path:../../simple";
2024-01-05 12:19:08 +01:00
inputs = {
nixvim.follows = "nixvim";
nixpkgs.follows = "nixvim/nixpkgs";
flake-parts.follows = "nixvim/flake-parts";
};
};
};
outputs = inputs: inputs.simple;
}