From 89324863a0d3e958a3865464f0f910c382ddd882 Mon Sep 17 00:00:00 2001 From: yuri Date: Sat, 25 Nov 2023 21:31:41 +0100 Subject: [PATCH] Use postgresql service from unstable --- config/hosts/mastodon/mastodon.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/hosts/mastodon/mastodon.nix b/config/hosts/mastodon/mastodon.nix index a05107e..29a9560 100644 --- a/config/hosts/mastodon/mastodon.nix +++ b/config/hosts/mastodon/mastodon.nix @@ -29,9 +29,13 @@ let vapidPublicKey = pkgs.writeText "vapid-public-key" "BDCbFEDCZ8eFuWr3uEq4Qc30UFZUQeNpF8OCw6OjPwAtaKS1yTM3Ue749Xjqy5WhBDjakzlixh4Gk7gluUhIdsU="; in { - disabledModules = [ "services/web-apps/mastodon.nix" ]; + disabledModules = [ + "services/databases/postgresql.nix" + "services/web-apps/mastodon.nix" + ]; imports = [ + "${nixpkgs-unstable}/nixos/modules/services/databases/postgresql.nix" "${nixpkgs-unstable}/nixos/modules/services/web-apps/mastodon.nix" ];