2021-05-17 00:00:34 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2021-04-12 01:40:19 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ./virtualisation/pods.nix ];
|
2021-05-17 00:00:34 +01:00
|
|
|
|
|
|
|
options.services.nginx.domain = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "The base domain name to append to virtual domain names";
|
|
|
|
};
|
2021-04-12 01:40:19 +01:00
|
|
|
}
|