From abf9f2d2f510fad8535409886e0c9997c5b04836 Mon Sep 17 00:00:00 2001 From: Constantin Gierczak--Galle Date: Thu, 21 Nov 2024 18:46:03 +0100 Subject: [PATCH] fix: fmt --- machines/photo01/photoprism.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/machines/photo01/photoprism.nix b/machines/photo01/photoprism.nix index 661a913..7464a49 100644 --- a/machines/photo01/photoprism.nix +++ b/machines/photo01/photoprism.nix @@ -4,7 +4,8 @@ let port = 2342; in { - services.photoprism = { + services = { + photoprism = { enable = true; port = port; settings = { @@ -28,7 +29,7 @@ in passwordFile = "/passwords/photoprism"; }; - services.mysql = { + mysql = { enable = true; dataDir = "/data/mysql"; package = pkgs.mariadb; @@ -52,4 +53,5 @@ in proxyWebsockets = true; }; }; +}; }