From 5ff9e5decb5a2b8ce11387ae9fd3ac6bce941a51 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sun, 28 Apr 2024 09:58:15 -0700 Subject: [PATCH] fix(exports): missing postgresql service attr --- modules/system/exports/postgresql.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system/exports/postgresql.nix b/modules/system/exports/postgresql.nix index 29fe1997..e7ba5c6b 100644 --- a/modules/system/exports/postgresql.nix +++ b/modules/system/exports/postgresql.nix @@ -8,6 +8,7 @@ in { in f nixosConfig cfg; in { nixos = { + serviceAttr = "postgresql"; assertions = mkIf config.enable [ (mkAssertion (nixosConfig: cfg: { assertion = config.ports.default.port == cfg.settings.port;