Files
clan-core/clanServices/flake-module.nix
Johannes Kirschbauer e2ab2fcfb3 Fix: update test and docs
2025-05-12 15:54:50 +02:00

11 lines
158 B
Nix

{ lib, ... }:
{
imports = [
./hello-world/flake-module.nix
];
clan.modules = {
admin = lib.modules.importApply ./admin/default.nix { };
};
}