nixos/nginx-sso: Disable by default

This commit is contained in:
Jack O'Sullivan 2022-06-12 11:39:53 +01:00
parent f9206d68d0
commit fe9825fa05

View File

@ -24,7 +24,7 @@ let
in in
{ {
options.my.nginx-sso = with lib.types; { options.my.nginx-sso = with lib.types; {
enable = mkBoolOpt' true "Whether to enable custom nginx-sso."; enable = mkBoolOpt' false "Whether to enable custom nginx-sso.";
package = mkOpt' package pkgs.nginx-sso "nginx-sso package to use."; package = mkOpt' package pkgs.nginx-sso "nginx-sso package to use.";
configuration = mkOpt' (attrsOf unspecified) { } "nginx-sso configuration."; configuration = mkOpt' (attrsOf unspecified) { } "nginx-sso configuration.";
extraConfigFile = mkOpt' (nullOr str) null "Path to configuration (e.g. for secrets)."; extraConfigFile = mkOpt' (nullOr str) null "Path to configuration (e.g. for secrets).";