This is not a Hydra option but a Nix option so it shouldn't be here.
25DXUDOJ5V5UJEVJVZAXT4FV7TOKO6CQRERRA2BSSFFPAEPTRIJAC
BT6SNXUAM2ZSGD7DAHJWZJVCWKLLAKAGFHDFCUKMIFG2AG3D65DQC
ZYEFL36QOB6KUR276RRT4PSAK7HWUJ6TLLZBEZM7SSGUX2WQTMZQC
D3MDJONYWWNXVVZDKTPDQE2H2HGMF263LXKT57B2GYCOXNM3PPOQC
useWAL = mkOption { default = true; description = '' Whether to use SQLite's Write-Ahead Logging, which may improve performance. ''; };
useWAL = mkOption {
default = true;
description = ''
Whether to use SQLite's Write-Ahead Logging, which may improve performance.
'';
};
use-sqlite-wal = ${if cfg.useWAL then "true" else "false"}