aboutsummaryrefslogtreecommitdiffstats
path: root/modules/system/services/postgresql
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/services/postgresql')
-rw-r--r--modules/system/services/postgresql/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/system/services/postgresql/default.nix b/modules/system/services/postgresql/default.nix
deleted file mode 100644
index c47a235c..00000000
--- a/modules/system/services/postgresql/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.soispha.services.postgresql;
-in {
- options.soispha.services.postgresql = {
- enable = lib.mkEnableOption "postgresql";
- };
-
- config = lib.mkIf cfg.enable {
- services.postgresql = {
- enable = true;
- };
- };
-}