mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 04:40:05 +00:00
14 lines
375 B
Nix
14 lines
375 B
Nix
{
|
|
lib,
|
|
self,
|
|
...
|
|
}: let
|
|
inherit (lib) types;
|
|
inherit (self) namespace;
|
|
inherit (self.lib) mkOpt;
|
|
in {
|
|
options.${namespace}.services = {
|
|
domain = mkOpt types.str "thevoid.cafe" "The main system domain, used for exposing services.";
|
|
mail = mkOpt types.str "system@thevoid.cafe" "The main system administration E-Mail, used for logs and services.";
|
|
};
|
|
}
|