nixos/spamassassin: set home for spamd user

This should hopefully fix errors like the following:

	plugin: eval failed: bayes: (in learn) locker: safe_lock: cannot create tmp lockfile /var/empty/.spamassassin/bayes.lock.atuin.qyliss.net.398779 for /var/empty/.spamassassin/bayes.lock: No such file or directory
This commit is contained in:
Alyssa Ross 2025-07-02 15:47:08 +02:00
parent 11eb3756fe
commit 381be8e990

View File

@ -121,6 +121,7 @@ in
users.users.spamd = {
description = "Spam Assassin Daemon";
home = "/var/lib/spamassassin";
uid = config.ids.uids.spamd;
group = "spamd";
};