athens/modules/home-assistant/postgresql.nix

14 lines
240 B
Nix
Raw Normal View History

2021-07-14 22:49:45 -04:00
{ config, lib, pkgs, ... }:
{
services = {
postgresql = {
ensureDatabases = [ "hass" ];
ensureUsers = [{
name = "hass";
ensurePermissions = { "DATABASE hass" = "ALL PRIVILEGES"; };
}];
};
};
}