1
0
Fork 0

enhance nextcloud options a bit

This commit is contained in:
Pierre Penninckx 2023-11-20 22:29:00 -08:00 committed by GitHub
parent eae5eade56
commit 48eb64043b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,12 +11,12 @@ in
subdomain = lib.mkOption { subdomain = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Subdomain under which home-assistant will be served."; description = "Subdomain under which Nextcloud will be served.";
example = "nextcloud"; example = "nextcloud";
}; };
domain = lib.mkOption { domain = lib.mkOption {
description = lib.mdDoc "Domain to serve sites under."; description = lib.mdDoc "Domain to serve Nextcloud under.";
type = lib.types.str; type = lib.types.str;
example = "domain.com"; example = "domain.com";
}; };
@ -29,13 +29,13 @@ in
localNetworkIPRange = lib.mkOption { localNetworkIPRange = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Local network range, to restrict access to the UI to only those IPs."; description = "Local network range, to restrict access to Open Office to only those IPs.";
example = "192.168.1.1/24"; example = "192.168.1.1/24";
}; };
debug = lib.mkOption { debug = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
description = "Enable debugging."; description = "Enable more verbose logging and xdebug tracing.";
default = false; default = false;
example = true; example = true;
}; };