feat(nix_models): replace inventory model by holistic clan model

This commit is contained in:
Johannes Kirschbauer
2025-05-27 10:27:17 +02:00
parent 111983b508
commit 8eb2ad6c6d
5 changed files with 22 additions and 12 deletions

View File

@@ -1,4 +1,9 @@
{ self, inputs, ... }:
{
self,
inputs,
options,
...
}:
let
inputOverrides = builtins.concatStringsSep " " (
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
@@ -28,6 +33,7 @@ in
legacyPackages.schemas = (
import ./schemas {
flakeOptions = options;
inherit
pkgs
self