nixos/ncps: Allow postgres as a lock.backend option

This commit is contained in:
Wael Nasreddine
2026-01-22 22:23:41 -08:00
parent fb787faf79
commit f12af1fdb8
+3 -1
View File
@@ -237,10 +237,12 @@ in
type = lib.types.enum [
"local"
"redis"
"postgres"
];
default = "local";
description = ''
Lock backend to use: 'local' (single instance), 'redis' (distributed).
Lock backend to use: 'local' (single instance), 'redis'
(distributed), or 'postgres' (distributed, requires PostgreSQL).
'';
};