11 lines
158 B
Nix
11 lines
158 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./hello-world/flake-module.nix
|
|
];
|
|
|
|
clan.modules = {
|
|
admin = lib.modules.importApply ./admin/default.nix { };
|
|
};
|
|
}
|