summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-08 15:50:03 +0300
committerGitHub <noreply@github.com>2023-06-08 15:50:03 +0300
commit4f40a8bdb4ea298ae2a4937e78b9c97d0d9cdd97 (patch)
tree635ad74143f56a1688ed802c1ab09852d7780b0c /nixos
parent26a44e0c958b47e76919fd2d86d17fe0eccde75d (diff)
parent4b8f7098da49ffdb3d663fdebd7cc5c6b762a52f (diff)
Merge pull request #236640 from wegank/foundationdb-cleanup
foundationdb: cleanup
Diffstat (limited to 'nixos')
-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