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