Files
clan-core/clanServices/flake-module.nix
2025-05-12 15:54:49 +02:00

14 lines
206 B
Nix

{ lib, ... }:
{
imports = [
./hello-world/flake-module.nix
];
clan.inventory.modules = {
admin = lib.modules.importApply ./admin/default.nix {
# inherit (self) packages;
};
};
}