From 5915f4412dd24093f7c3a39738d59023bcc9ad15 Mon Sep 17 00:00:00 2001 From: Robin Raymond Date: Thu, 21 Sep 2017 16:11:46 +0200 Subject: [PATCH] trying to fix travisci bug --- default.nix | 4 ++-- mail-server/users.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/default.nix b/default.nix index c1be464..74c47c2 100644 --- a/default.nix +++ b/default.nix @@ -113,7 +113,7 @@ in vmailUserName = mkOption { type = types.str; - default = "vmailer"; + default = "vmail"; description = '' The user name and group name of the user that owns the directory where all the mail is stored. @@ -122,7 +122,7 @@ in vmailGroupName = mkOption { type = types.str; - default = "vmailer"; + default = "vmail"; description = '' The user name and group name of the user that owns the directory where all the mail is stored. diff --git a/mail-server/users.nix b/mail-server/users.nix index a8cbcc9..df24faf 100644 --- a/mail-server/users.nix +++ b/mail-server/users.nix @@ -25,7 +25,7 @@ let uid = vmailUIDStart; home = mailDirectory; createHome = true; - group = vmailGroupName; + #group = vmailGroupName; }]; # accountsToUser :: String -> UserRecord