From 67ddb71d8595549c13942c6fe807cd5d9c45e942 Mon Sep 17 00:00:00 2001 From: saygo-png Date: Fri, 5 Dec 2025 14:23:36 +0100 Subject: [PATCH] flake: add `inputs` option Signed-off-by: saygo-png --- flake/default.nix | 1 + flake/inputs.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 flake/inputs.nix diff --git a/flake/default.nix b/flake/default.nix index 1df0e406..08599eb2 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -9,6 +9,7 @@ imports = [ ./flake-modules ./ci.nix + ./inputs.nix ./lib.nix ./nixvim-configurations.nix ./overlays.nix diff --git a/flake/inputs.nix b/flake/inputs.nix new file mode 100644 index 00000000..80f59b72 --- /dev/null +++ b/flake/inputs.nix @@ -0,0 +1,9 @@ +{ lib, inputs, ... }: +{ + options.inputs = lib.mkOption { + type = lib.types.raw; + description = "Flake inputs."; + readOnly = true; + }; + config.inputs = inputs; +}