Files
clan-core/lib/flake-module.nix
2025-06-26 17:37:42 +02:00

23 lines
475 B
Nix

{
lib,
inputs,
self,
...
}:
rec {
# TODO: automatically generate this from the directory conventions
imports = [
./modules/flake-module.nix
./clanTest/flake-module.nix
./introspection/flake-module.nix
./modules/inventory/flake-module.nix
./jsonschema/flake-module.nix
./types/flake-module.nix
];
flake.clanLib = import ./default.nix {
inherit lib inputs self;
};
# TODO: remove this legacy alias
flake.lib = flake.clanLib;
}