aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/networking/websockify.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/networking/websockify.nix')
-rw-r--r--nixpkgs/nixos/modules/services/networking/websockify.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixpkgs/nixos/modules/services/networking/websockify.nix b/nixpkgs/nixos/modules/services/networking/websockify.nix
index d9177df65bd..27cb47be12f 100644
--- a/nixpkgs/nixos/modules/services/networking/websockify.nix
+++ b/nixpkgs/nixos/modules/services/networking/websockify.nix
@@ -5,12 +5,12 @@ with lib;
let cfg = config.services.networking.websockify; in {
options = {
services.networking.websockify = {
- enable = mkOption {
+ enable = mkOption {
description = "Whether to enable websockify to forward websocket connections to TCP connections.";
- default = false;
+ default = false;
- type = types.bool;
+ type = types.bool;
};
sslCert = mkOption {