tlaternet-server/modules/default.nix

13 lines
258 B
Nix
Raw Normal View History

{ lib, ... }:
with lib;
2021-04-12 01:40:19 +01:00
{
2021-05-15 22:29:02 +01:00
imports = [ ./virtualisation/pods.nix ./virtualisation/oci-containers.nix ];
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
}