mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-18 18:42:56 +02:00
Add nix-infra-machine
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user