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 {
users.users.matrix-synapse =
{ name = "";
users.users.matrix-synapse = {
group = "matrix-synapse";
home = cfg.dataDir;
createHome = true;

View file

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