Fix(clan-module): pass clan-core not a module

This commit is contained in:
Johannes Kirschbauer
2025-06-27 10:13:22 +02:00
parent 382fe7181b
commit 4c0cc45e9f

View File

@@ -1,7 +1,7 @@
{ self, config, ... }: { self, config, ... }:
{ {
flake.flakeModules = { flake.flakeModules = {
clan = import ./clan.nix self.module.clan.default; clan = import ./clan.nix self;
default = config.flake.flakeModules.clan; default = config.flake.flakeModules.clan;
}; };
} }