From 4c0cc45e9fb9f852ed15828baa94b65fa210be39 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 27 Jun 2025 10:13:22 +0200 Subject: [PATCH] Fix(clan-module): pass clan-core not a module --- flakeModules/flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flakeModules/flake-module.nix b/flakeModules/flake-module.nix index b3aab6525..bd840e510 100644 --- a/flakeModules/flake-module.nix +++ b/flakeModules/flake-module.nix @@ -1,7 +1,7 @@ { self, config, ... }: { flake.flakeModules = { - clan = import ./clan.nix self.module.clan.default; + clan = import ./clan.nix self; default = config.flake.flakeModules.clan; }; }