1
0
Fork 0
forked from DGNum/lab-infra

style(photo01): "..." -> "" in module inputs

This commit is contained in:
Constantin Gierczak--Galle 2024-11-21 18:47:17 +01:00
parent abf9f2d2f5
commit 2aa758ae94
No known key found for this signature in database
3 changed files with 44 additions and 47 deletions

View file

@ -1,4 +1,4 @@
{ ... }:
{ }:
{

View file

@ -1,4 +1,4 @@
{ ... }:
{ _ }:
{
services.openssh = {

View file

@ -1,13 +1,10 @@
{ pkgs, ... }:
let
port = 2342;
in
{
services = {
photoprism = {
enable = true;
port = port;
port = 2342;
settings = {
PHOTOPRISM_DEFAULT_LOCALE = "fr";
PHOTOPRISM_ADMIN_USERNAME = "admin";
@ -53,5 +50,5 @@ in
proxyWebsockets = true;
};
};
};
};
}