1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-09 02:21:07 +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

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;
}