docs: point users towards passing in self to buildClan

This commit is contained in:
Michael Hoang
2025-05-27 13:43:59 +10:00
parent 5b5ebaf3ef
commit b6d20a63f5
2 changed files with 7 additions and 4 deletions

View File

@@ -1,10 +1,11 @@
{ inputs, ... }:
{ self, inputs, ... }:
{
imports = [
inputs.clan.flakeModules.default
];
clan = {
meta.name = "__CHANGE_ME__";
inherit self;
specialArgs = {
inherit inputs;
};