aboutsummaryrefslogtreecommitdiff
path: root/colmena/cobalt/modules
diff options
context:
space:
mode:
Diffstat (limited to 'colmena/cobalt/modules')
-rw-r--r--colmena/cobalt/modules/soju.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/colmena/cobalt/modules/soju.nix b/colmena/cobalt/modules/soju.nix
index 95f333e..d14082c 100644
--- a/colmena/cobalt/modules/soju.nix
+++ b/colmena/cobalt/modules/soju.nix
@@ -69,7 +69,7 @@ in
httpOrigins = mkOption {
type = types.listOf types.str;
- default = [];
+ default = [ ];
description = lib.mdDoc ''
List of allowed HTTP origins for WebSocket listeners. The parameters are
interpreted as shell patterns, see
@@ -79,7 +79,7 @@ in
acceptProxyIP = mkOption {
type = types.listOf types.str;
- default = [];
+ default = [ ];
description = lib.mdDoc ''
Allow the specified IPs to act as a proxy. Proxys have the ability to
overwrite the remote and local connection addresses (via the X-Forwarded-\*
@@ -96,7 +96,7 @@ in
extraGroups = mkOption {
type = types.listOf types.str;
- default = [];
+ default = [ ];
description = lib.mdDoc "Extra groups for the dynamic user.";
};
};