about summary refs log tree commit diff stats
path: root/modules/by-name/po/postgresql/module.nix
blob: c47a235cc08cf66ecb86574ed65ac7bf31a94706 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  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;
    };
  };
}