nixos/mongodb: add pkgs.mongodb-ce as package option example
This commit is contained in:
parent
2f8af3ea93
commit
d223d3f15d
@ -380,6 +380,8 @@
|
||||
|
||||
- GOverlay has been updated to 1.2, please check the [upstream changelog](https://github.com/benjamimgois/goverlay/releases) for more details.
|
||||
|
||||
- [`services.mongodb`](#opt-services.mongodb.enable) is now compatible with the `mongodb-ce` binary package. To make use of it, set [`services.mongodb.package`](#opt-services.mongodb.package) to `pkgs.mongodb-ce`.
|
||||
|
||||
- [`services.jupyter`](#opt-services.jupyter.enable) is now compatible with `Jupyter Notebook 7`. See [the migration guide](https://jupyter-notebook.readthedocs.io/en/latest/migrate_to_notebook7.html) for details.
|
||||
|
||||
- `networking.wireguard` now has an optional networkd backend. It is enabled by default when `networking.useNetworkd` is enabled, and it can be enabled alongside scripted networking with `networking.wireguard.useNetworkd`. Some `networking.wireguard` options have slightly different behavior with the networkd and script-based backends, documented in each option.
|
||||
|
||||
@ -43,7 +43,9 @@ in
|
||||
|
||||
enable = lib.mkEnableOption "the MongoDB server";
|
||||
|
||||
package = lib.mkPackageOption pkgs "mongodb" { };
|
||||
package = lib.mkPackageOption pkgs "mongodb" {
|
||||
example = "pkgs.mongodb-ce";
|
||||
};
|
||||
|
||||
mongoshPackage = lib.mkPackageOption pkgs "mongosh" { };
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user