From ef63538cb8e29c37d0c33a8ad1c32bc9a6cc526e Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Sat, 19 Aug 2023 09:04:33 +0500 Subject: [PATCH] Add photoprism user --- nixos/users.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/users.nix b/nixos/users.nix index cbd166e..5ec1a9a 100644 --- a/nixos/users.nix +++ b/nixos/users.nix @@ -16,6 +16,10 @@ isSystemUser = true; group = "nextcloud"; }; + photoprism = { + isSystemUser = true; + group = "photoprism"; + }; }; users.groups = { @@ -25,5 +29,8 @@ nextcloud = { members = [ "nextcloud" config.services.nginx.user ]; }; + photoprism = { + members = [ "photoprism" config.services.nginx.user ]; + }; }; }