13 lines
331 B
Nix
13 lines
331 B
Nix
{ ... }:
|
|
{
|
|
_class = "clan.service";
|
|
manifest.name = "importer";
|
|
manifest.description = "Convenient, structured module imports for hosts.";
|
|
manifest.categories = [ "Utility" ];
|
|
manifest.readme = builtins.readFile ./README.md;
|
|
|
|
roles.default = {
|
|
description = "Placeholder role to apply the importer service";
|
|
};
|
|
}
|