From 38579a1cc967340dd0b52f7bc315a9b1cb771183 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 17 Mar 2016 03:58:50 +0100 Subject: [PATCH] gitlab service: Remove emailFrom option Not being used anymore. Use `services.gitlab.extraConfig.gitlab.email_from` instead. --- nixos/modules/services/misc/gitlab.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 85b3ab6f9249..267442bd1f8b 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -206,12 +206,6 @@ in { description = "Gitlab database user."; }; - emailFrom = mkOption { - type = types.str; - default = "example@example.org"; - description = "The source address for emails sent by gitlab."; - }; - host = mkOption { type = types.str; default = config.networking.hostName;