1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-07 17:41:04 +01:00
nixvim/flake/inputs.nix
saygo-png 67ddb71d85 flake: add inputs option
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-12-05 13:44:35 +00:00

9 lines
173 B
Nix

{ lib, inputs, ... }:
{
options.inputs = lib.mkOption {
type = lib.types.raw;
description = "Flake inputs.";
readOnly = true;
};
config.inputs = inputs;
}