nixos/vaultwarden: fix eval

This commit is contained in:
K900 2024-08-07 09:42:01 +03:00
parent 3733d4b091
commit 2cd35e2b45

View File

@ -168,7 +168,7 @@ in {
message = "Backups for database backends other than sqlite will need customization";
}
{
assertion = !(lib.hasPrefix dataDir cfg.backupDir);
assertion = cfg.backupDir != null -> !(lib.hasPrefix dataDir cfg.backupDir);
message = "Backup directory can not be in ${dataDir}";
}
];