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

15 lines
311 B
Nix

{ clan-core }:
{
_class = "clan";
_module.args = {
inherit clan-core;
inherit (clan-core) clanLib;
# TODO: This should be set via an option otherwise it is not possible to override
inherit (clan-core.inputs) nixpkgs nix-darwin;
};
imports = [
./module.nix
./interface.nix
];
}