This commit is contained in:
Joakim Repomaa
2025-07-08 15:53:39 +03:00
parent 6fb5c1ffa5
commit 3a03103fc7
33 changed files with 45 additions and 1769 deletions

View File

@@ -1,4 +1,9 @@
{ lib, inputs, ... }:
{
lib,
inputs,
pkgs-unstable,
...
}:
let
inherit (builtins) attrNames filter readDir;
dirs =
@@ -13,7 +18,7 @@ lib.composeManyExtensions (
dir:
import ./${dir} {
util = util dir;
inherit inputs;
inherit inputs pkgs-unstable;
}
) dirs
)