Migrated from multi repos to monorepo architecture.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
options.numbus = {
|
||||
services = {
|
||||
domain = mkOption {
|
||||
type = types.str;
|
||||
example = "numbus.eu";
|
||||
description = "The root domain name (i.e. example.com) that your services will use";
|
||||
};
|
||||
dns = mkOption {
|
||||
type = types.enum [ "pi-hole" "adguard" ];
|
||||
default = "pi-hole";
|
||||
example = "pi-hole";
|
||||
description = "The preferred DNS resolver service (pi-hole or adguard) that other services should depend on";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user