mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-24 02:34:15 -05:00
flake: add inputs option
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
imports = [
|
||||
./flake-modules
|
||||
./ci.nix
|
||||
./inputs.nix
|
||||
./lib.nix
|
||||
./nixvim-configurations.nix
|
||||
./overlays.nix
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{ lib, inputs, ... }:
|
||||
{
|
||||
options.inputs = lib.mkOption {
|
||||
type = lib.types.raw;
|
||||
description = "Flake inputs.";
|
||||
readOnly = true;
|
||||
};
|
||||
config.inputs = inputs;
|
||||
}
|
||||
Reference in New Issue
Block a user