buildClan: replace all usages by lib.clan

This commit is contained in:
Johannes Kirschbauer
2025-07-01 11:56:31 +02:00
parent f97385a9dc
commit ae274d6b82
11 changed files with 41 additions and 43 deletions

View File

@@ -6,7 +6,7 @@
{ self, clan-core, ... }:
let
# Usage see: https://docs.clan.lol
clan = clan-core.clanLib.buildClan {
clan = clan-core.lib.clan {
inherit self;
inventory =
@@ -66,6 +66,6 @@
in
{
# all machines managed by Clan
inherit (clan) nixosConfigurations nixosModules clanInternals;
inherit (clan.config) nixosConfigurations nixosModules clanInternals;
};
}