flake: add inputs option

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png
2025-12-05 13:44:35 +00:00
committed by Matt Sturgeon
parent cc57493853
commit 67ddb71d85
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -9,6 +9,7 @@
imports = [
./flake-modules
./ci.nix
./inputs.nix
./lib.nix
./nixvim-configurations.nix
./overlays.nix
+9
View File
@@ -0,0 +1,9 @@
{ lib, inputs, ... }:
{
options.inputs = lib.mkOption {
type = lib.types.raw;
description = "Flake inputs.";
readOnly = true;
};
config.inputs = inputs;
}