13 lines
222 B
Nix
13 lines
222 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ./virtualisation/pods.nix ];
|
|
|
|
options.services.nginx.domain = mkOption {
|
|
type = types.str;
|
|
description = "The base domain name to append to virtual domain names";
|
|
};
|
|
}
|