Add mongodb to my host

This commit is contained in:
Greg Hellings
2024-10-22 09:57:19 -05:00
parent 1abcd94994
commit 7c7a5d4a27
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
services.mongodb = {
enable = true;
};
environment.systemPackages = with pkgs; [ mongodb-compass ];
}