diff options
author | Soispha <soispha@vhack.eu> | 2023-08-26 16:54:35 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-26 16:54:35 +0200 |
commit | c7b27836c144608d0d8a0b0b3d9b39bf1ed71240 (patch) | |
tree | 18c1a635969679578bff23066418a228eae93222 | |
parent | Feat(hosts/tiamat): Enable bluetooth (diff) | |
download | nixos-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.nix | 2 |
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; }; } |