From 85832de2e8291163b62386d705b5b394a06cfac8 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 10 Apr 2016 21:37:12 +0200 Subject: [PATCH] nixos/taskserver: Remove client.cert option The option is solely for debugging purposes (particularly the unit tests of the project itself) and doesn't make sense to include it in the NixOS module options. If people want to use this, we might want to introduce another option so that we can insert arbitrary configuration lines. Signed-off-by: aszlig --- nixos/modules/services/misc/taskserver/default.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/nixos/modules/services/misc/taskserver/default.nix b/nixos/modules/services/misc/taskserver/default.nix index 3a9669ddd26..62e35803117 100644 --- a/nixos/modules/services/misc/taskserver/default.nix +++ b/nixos/modules/services/misc/taskserver/default.nix @@ -38,7 +38,6 @@ let ${mkConfLine "request.limit" cfg.requestLimit} # client - ${mkConfLine "client.cert" cfg.client.cert} ${mkConfLine "client.allow" cfg.allowedClientIDs} ${mkConfLine "client.deny" cfg.disallowedClientIDs} @@ -226,15 +225,6 @@ in { ''; }; - client.cert = mkOption { - type = types.nullOr types.path; - default = null; - description = '' - Fully qualified path of the client cert. This is used by the - client command. - ''; - }; - server = { host = mkOption { type = types.str;