nixos/programs/sessiond: force disabling of default sessiond session

This will completely break if set otherwise so we'll have to force it.
This commit is contained in:
Gabriel Arazas 2024-03-06 17:02:08 +08:00
parent ec3fdab52c
commit b8616bd7b2
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -197,6 +197,6 @@ in
# We're disabling the upstream sessiond service since we have our own set
# of sessiond sessions here.
systemd.user.services.sessiond.enable = false;
systemd.user.services.sessiond.enable = lib.mkForce false;
};
}