summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-08 14:48:41 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-08 14:48:41 +0300
commit4b8f7098da49ffdb3d663fdebd7cc5c6b762a52f (patch)
treeb9709f510e3d9bf5b87766c923d9ed304bed2bf9 /nixos/modules/services/databases
parent7cd807e5883736e1eeddb091b5774ee95af29869 (diff)
foundationdb: cleanup
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/foundationdb.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/databases/foundationdb.md b/nixos/modules/services/databases/foundationdb.md
index f852c6888d84..0815c139152f 100644
--- a/nixos/modules/services/databases/foundationdb.md
+++ b/nixos/modules/services/databases/foundationdb.md
@@ -6,7 +6,7 @@
*Maintainer:* Austin Seipp
-*Available version(s):* 5.1.x, 5.2.x, 6.0.x
+*Available version(s):* 7.1.x
FoundationDB (or "FDB") is an open source, distributed, transactional
key-value store.
@@ -17,7 +17,7 @@ To enable FoundationDB, add the following to your
{file}`configuration.nix`:
```
services.foundationdb.enable = true;
-services.foundationdb.package = pkgs.foundationdb52; # FoundationDB 5.2.x
+services.foundationdb.package = pkgs.foundationdb71; # FoundationDB 7.1.x
```
The {option}`services.foundationdb.package` option is required, and
@@ -66,7 +66,7 @@ necessary Python modules).
```ShellSession
a@link> cat fdb-status.py
#! /usr/bin/env nix-shell
-#! nix-shell -i python -p python pythonPackages.foundationdb52
+#! nix-shell -i python -p python pythonPackages.foundationdb71
import fdb
import json