Merge pull request #77344 from bachp/fix-empty-usernames

nixos/matrix-synapse, nixos/mxisd: fix empty usernames
This commit is contained in:
worldofpeace 2020-01-08 20:26:43 -05:00 committed by GitHub
commit f8d70be903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -657,8 +657,7 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
users.users.matrix-synapse = users.users.matrix-synapse = {
{ name = "";
group = "matrix-synapse"; group = "matrix-synapse";
home = cfg.dataDir; home = cfg.dataDir;
createHome = true; createHome = true;

View File

@ -104,7 +104,6 @@ in {
users.groups.mxisd = users.groups.mxisd =
{ {
name = "";
gid = config.ids.gids.mxisd; gid = config.ids.gids.mxisd;
}; };