25 lines
584 B
Nix
25 lines
584 B
Nix
{
|
|
services.ente.api = {
|
|
enable = true;
|
|
enableLocalDB = true;
|
|
|
|
domain = "ente-v2.procopius.dk";
|
|
settings = {
|
|
# apps = {
|
|
# accounts = "https://accounts.procopius.dk";
|
|
# cast = "https://cast.procopius.dk";
|
|
# public-albums = "https://albums.procopius.dk";
|
|
# };
|
|
};
|
|
};
|
|
services.ente.web = {
|
|
enable = true;
|
|
domains = {
|
|
api = "ente-v2.procopius.dk";
|
|
accounts = "accounts.procopius.dk";
|
|
albums = "albums.procopius.dk";
|
|
cast = "cast.procopius.dk";
|
|
photos = "photos.procopius.dk";
|
|
};
|
|
};
|
|
}
|