Files
clan-core/clanServices/flake-module.nix
2025-05-14 09:52:15 +00:00

12 lines
186 B
Nix

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