From 4394509d32113a212c13173c008bf0a19305a1d5 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sat, 13 Jul 2024 07:46:23 -0500 Subject: [PATCH] replace deprecated type --- nixos/modules/nixos/services/postgresql/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/nixos/services/postgresql/default.nix b/nixos/modules/nixos/services/postgresql/default.nix index 19f62d4..9e68a96 100644 --- a/nixos/modules/nixos/services/postgresql/default.nix +++ b/nixos/modules/nixos/services/postgresql/default.nix @@ -19,7 +19,7 @@ in }; backupLocation = mkOption { - type = lib.types.string; + type = lib.types.str; description = "Location for sql backups to be stored."; default = "/persist/backup/postgresql"; };