1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-07 17:41:04 +01:00

flake: add inputs option

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-12-05 14:23:36 +01:00 committed by Matt Sturgeon
parent cc57493853
commit 67ddb71d85
2 changed files with 10 additions and 0 deletions

View file

@ -9,6 +9,7 @@
imports = [
./flake-modules
./ci.nix
./inputs.nix
./lib.nix
./nixvim-configurations.nix
./overlays.nix

9
flake/inputs.nix Normal file
View file

@ -0,0 +1,9 @@
{ lib, inputs, ... }:
{
options.inputs = lib.mkOption {
type = lib.types.raw;
description = "Flake inputs.";
readOnly = true;
};
config.inputs = inputs;
}