From 76506ae42f602e607cddacc3dc1bc33cdbe70b59 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Wed, 8 Jan 2020 23:16:39 +0100 Subject: [PATCH 1/2] nixos/matrix-synapse: fix empty user name --- nixos/modules/services/misc/matrix-synapse.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/matrix-synapse.nix b/nixos/modules/services/misc/matrix-synapse.nix index c0d44e6feb7707..750f4a292fb4ae 100644 --- a/nixos/modules/services/misc/matrix-synapse.nix +++ b/nixos/modules/services/misc/matrix-synapse.nix @@ -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; From 031924113286de1b9ded5603920c9cedfabfedb2 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Wed, 8 Jan 2020 23:17:24 +0100 Subject: [PATCH 2/2] nixos/mxisd: fix empty user name --- nixos/modules/services/networking/mxisd.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/networking/mxisd.nix b/nixos/modules/services/networking/mxisd.nix index b59371d241ec2f..482d6ff456b16e 100644 --- a/nixos/modules/services/networking/mxisd.nix +++ b/nixos/modules/services/networking/mxisd.nix @@ -104,7 +104,6 @@ in { users.groups.mxisd = { - name = ""; gid = config.ids.gids.mxisd; };