services: postgresql-backup: enable with postgres

This commit is contained in:
Antoine Martin 2022-06-14 19:36:18 +02:00
parent 42e681bb81
commit 1b200779b2
3 changed files with 3 additions and 9 deletions

View file

@ -13,7 +13,9 @@
cfg = config.my.services.postgresql-backup;
in {
options.my.services.postgresql-backup = {
enable = mkEnableOption "Backup SQL databases";
enable =
(mkEnableOption "Backup SQL databases")
// {default = config.services.postgresql.enable;};
};
config = mkIf cfg.enable {