Skip to content

Commit

Permalink
Merge pull request #77344 from bachp/fix-empty-usernames
Browse files Browse the repository at this point in the history
nixos/matrix-synapse, nixos/mxisd: fix empty usernames
  • Loading branch information
worldofpeace committed Jan 9, 2020
2 parents 4c45878 + 0319241 commit f8d70be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions nixos/modules/services/misc/matrix-synapse.nix
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion nixos/modules/services/networking/mxisd.nix
Expand Up @@ -104,7 +104,6 @@ in {

users.groups.mxisd =
{
name = "";
gid = config.ids.gids.mxisd;
};

Expand Down

0 comments on commit f8d70be

Please sign in to comment.