Unverified Commit 2de65f4a authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #332919 from K900/vaultwarden-eval

nixos/vaultwarden: fix eval
parents 158217e8 2cd35e2b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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}";
      }
    ];