mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-07 17:41:04 +01:00
9 lines
173 B
Nix
9 lines
173 B
Nix
{ lib, inputs, ... }:
|
|
{
|
|
options.inputs = lib.mkOption {
|
|
type = lib.types.raw;
|
|
description = "Flake inputs.";
|
|
readOnly = true;
|
|
};
|
|
config.inputs = inputs;
|
|
}
|