mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 20:30:05 +00:00
18 lines
389 B
Nix
18 lines
389 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.";
|
|
};
|
|
}
|