13 lines
296 B
Nix
13 lines
296 B
Nix
{ config, ... }:
|
|
{
|
|
config.assertions = [
|
|
{
|
|
assertion = config.clan.inventory.services.admin != { };
|
|
message = ''
|
|
The admin module has been migrated from `clan.services` to `clan.instances`
|
|
See https://docs.clan.lol/TODO for updated usage.
|
|
'';
|
|
}
|
|
];
|
|
}
|