Files
k8scd/nix-infra-machine/__test__/mongodb/nodes/testnode001.nix
T
2026-03-15 18:31:53 +01:00

14 lines
316 B
Nix

{ config, pkgs, lib, ... }: {
# Allow insecure MongoDB package (CVE-2025-14847)
nixpkgs.config.permittedInsecurePackages = [
"mongodb-ce-8.0.4"
];
# Enable MongoDB using the infrastructure module
infrastructure.mongodb = {
enable = true;
bindToIp = "127.0.0.1";
bindToPort = 27018;
};
}