puzzlevision/modules/nixos/services/default.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.";
};
}