Files
clan-core/lib/modules/clan/default.nix
Johannes Kirschbauer e1cb17db35 build-clan: export default.nix that injects clanLib
This should be the single entry point, that includes clanLib
instead of importApply propagation
2025-06-25 12:07:59 +02:00

11 lines
118 B
Nix

{ clanLib }:
{
_module.args = {
inherit clanLib;
};
imports = [
./module.nix
./interface.nix
];
}