From 0050a4130b3362bac9c8fbb7831857e9fe11cff5 Mon Sep 17 00:00:00 2001 From: Thary Date: Thu, 25 Sep 2025 23:37:30 +0300 Subject: [PATCH] fix --- module.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module.nix b/module.nix index e5f8215..f9a9aad 100644 --- a/module.nix +++ b/module.nix @@ -117,9 +117,11 @@ in users.users.mastodon.isSystemUser = lib.mkForce false; users.users.mastodon.isNormalUser = lib.mkForce true; - users.users.noreply.mastodon.group = "email-users"; users.groups."email-users" = {}; - users.users."noreply.mastodon".isSystemUser = true; + users.users."noreply.mastodon" = { + isSystemUser = true; + group = "email-users"; + }; selfprivacy.emails."noreply.mastodon" = { hashedPasswordFile = secrets.hashedPasswordFile; systemdTargets = [ "mastodon-email-password-setup.service" ];