10 lines
216 B
Nix
10 lines
216 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";
|
|
};
|
|
}
|