sneeuwvlok/modules/nixos/services/persistance/postgesql/default.nix
Chris Kruining 98c9424db5
Some checks failed
Test action / Print hello world (push) Failing after 1m52s
aaha, there is the code I forgot to commit...
2025-09-07 17:30:52 +02:00

26 lines
663 B
Nix

{ config, lib, pkgs, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.services.peristance.postgresql;
in
{
options.${namespace}.services.peristance.postgresql = {
enable = mkEnableOption "Postgresql";
};
config = mkIf cfg.enable {
services = {
postgresql = {
enable = true;
authentication = ''
# Generated file, do not edit!
# TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
'';
};
};
};
}