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:
parent
cc57493853
commit
67ddb71d85
2 changed files with 10 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
|||
imports = [
|
||||
./flake-modules
|
||||
./ci.nix
|
||||
./inputs.nix
|
||||
./lib.nix
|
||||
./nixvim-configurations.nix
|
||||
./overlays.nix
|
||||
|
|
|
|||
9
flake/inputs.nix
Normal file
9
flake/inputs.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ lib, inputs, ... }:
|
||||
{
|
||||
options.inputs = lib.mkOption {
|
||||
type = lib.types.raw;
|
||||
description = "Flake inputs.";
|
||||
readOnly = true;
|
||||
};
|
||||
config.inputs = inputs;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue