Gitiles
Code Review
Sign In
git.clicks.codes
/
Infra
/
NixFiles
/
1e2187f58c354323da9f90ee00c7f1feeef6770e
/
.
/
services
/
mongodb.nix
blob: 6156f7cc82bcba78a3cb6062211d4d4bbf1f7020 [
file
] [
log
] [
blame
]
{
config
,
pkgs
,
...
}:
{
services
.
mongodb
.
enable
=
true
;
services
.
mongodb
.
enableAuth
=
true
;
services
.
mongodb
.
initialRootPassword
=
"fYhw&%6frpcL9zcJ5p^b^tquP0kyVE9hehoLY4lY2zUUzbIjEyDPhAIMe2M"
;
services
.
mongodb
.
package
=
pkgs
.
mongodb
-
6_0
;
}