Disable mongo and add alias

This commit is contained in:
Greg Hellings
2024-10-22 14:53:48 -05:00
parent 93441bc372
commit cb22192c67
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -45,6 +45,7 @@
# Python related ones # Python related ones
ac = "vox activate"; ac = "vox activate";
d = "vox deactivate"; d = "vox deactivate";
s = "nix run \".#runserver\"";
# Nix related ones # Nix related ones
gl-nging = "sudo nixos-container run gitlab -- systemctl restart nginx"; gl-nging = "sudo nixos-container run gitlab -- systemctl restart nginx";
+1 -1
View File
@@ -2,7 +2,7 @@
{ {
services.mongodb = { services.mongodb = {
enable = true; enable = false;
}; };
environment.systemPackages = with pkgs; [ mongodb-compass ]; environment.systemPackages = with pkgs; [ mongodb-compass ];
} }