about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-26 16:54:35 +0200
committerSoispha <soispha@vhack.eu>2023-08-26 16:54:35 +0200
commitc7b27836c144608d0d8a0b0b3d9b39bf1ed71240 (patch)
tree18c1a635969679578bff23066418a228eae93222
parentFeat(hosts/tiamat): Enable bluetooth (diff)
downloadnixos-config-c7b27836c144608d0d8a0b0b3d9b39bf1ed71240.tar.gz
nixos-config-c7b27836c144608d0d8a0b0b3d9b39bf1ed71240.zip
Fix(system/services/postgresql): Disable as it's no longer needed
-rw-r--r--system/services/postgresql/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/services/postgresql/default.nix b/system/services/postgresql/default.nix
index 165be27c..4fc26034 100644
--- a/system/services/postgresql/default.nix
+++ b/system/services/postgresql/default.nix
@@ -1,5 +1,5 @@
 {...}: {
   services.postgresql = {
-    enable = true;
+    enable = false;
   };
 }