about summary refs log tree commit diff stats
path: root/modules/by-name/po/postgresql/module.nix
blob: 62233e96672355137310f940363afe86946bf298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  config,
  lib,
  ...
}: let
  cfg = config.soispha.services.postgresql;
in {
  options.soispha.services.postgresql = {
    enable = lib.mkEnableOption "postgresql";
  };

  config = lib.mkIf cfg.enable {
    soispha.impermanence.directories = [
      "/var/lib/postgresql"
    ];

    services.postgresql = {
      enable = true;
    };
  };
}