Skip to content

Commit

Permalink
enhance nextcloud options a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Penninckx authored Nov 21, 2023
1 parent eae5ead commit ef3e4e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/services/nextcloud-server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ in

subdomain = lib.mkOption {
type = lib.types.str;
description = "Subdomain under which home-assistant will be served.";
description = "Subdomain under which Nextcloud will be served.";
example = "nextcloud";
};

domain = lib.mkOption {
description = lib.mdDoc "Domain to serve sites under.";
description = lib.mdDoc "Domain to serve Nextcloud under.";
type = lib.types.str;
example = "domain.com";
};
Expand All @@ -29,13 +29,13 @@ in

localNetworkIPRange = lib.mkOption {
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";
};

debug = lib.mkOption {
type = lib.types.bool;
description = "Enable debugging.";
description = "Enable more verbose logging and xdebug tracing.";
default = false;
example = true;
};
Expand Down

0 comments on commit ef3e4e7

Please sign in to comment.