feat(nix): add database module and enable mongodb,mysql,pgsql

This commit is contained in:
Mohammad Rafiq 2025-07-09 01:57:41 +08:00
parent ea77bf62ad
commit 774527379a
No known key found for this signature in database
2 changed files with 97 additions and 0 deletions

View file

@ -30,6 +30,13 @@
platform = "intel";
root.drive = "/dev/disk/by-id/nvme-eui.002538d221b47b01";
};
extraCfg.server = {
databases = {
mongodb.enable = true;
mysql.enable = true;
postgresql.enable = true;
};
};
};
};
};