athens/modules/home-assistant/postgresql.nix

15 lines
285 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"; };
}];
};
2022-06-04 12:53:24 -04:00
postgresqlBackup.databases = [ "hass" ];
2021-07-14 22:49:45 -04:00
};
}