Compare commits

...

2 Commits

Author SHA1 Message Date
d28de2a644 use unstable radarr and sonarr 2023-05-18 20:23:15 +02:00
30faf02d27 create photoprism accounts 2023-05-18 20:23:02 +02:00
3 changed files with 11 additions and 4 deletions

View File

@ -17,8 +17,14 @@
}; };
}; };
radarr.enable = true; radarr = {
sonarr.enable = true; enable = true;
package = inputs.nixpkgs-unstable.legacyPackages.x86_64-linux.radarr;
};
sonarr = {
enable = true;
package = inputs.nixpkgs-unstable.legacyPackages.x86_64-linux.sonarr;
};
jackett = { jackett = {
enable = true; enable = true;
package = inputs.nixpkgs-unstable.legacyPackages.x86_64-linux.jackett; package = inputs.nixpkgs-unstable.legacyPackages.x86_64-linux.jackett;

View File

@ -549,9 +549,10 @@ in
photoprism = { photoprism = {
enable = true; enable = true;
originalsPath = "/mnt/backup_loutre/amandoleen/d/Users/Amand/Pictures"; originalsPath = "/mnt/backup_loutre/amandoleen/d/Users/Amand/Pictures";
passwordFile = "/mnt/secrets/photoprism_pass";
settings = { settings = {
PHOTOPRISM_AUTH_MODE = "public";
PHOTOPRISM_READONLY = "1"; PHOTOPRISM_READONLY = "1";
PHOTOPRISM_DETECT_NSFW = "1";
PHOTOPRISM_SITE_URL = "https://photo.nyanlout.re/"; PHOTOPRISM_SITE_URL = "https://photo.nyanlout.re/";
}; };
}; };

View File

@ -264,7 +264,7 @@ in
"ci.nyanlout.re" = simpleReverse 52350; "ci.nyanlout.re" = simpleReverse 52350;
"gitea.nyanlout.re" = simpleReverse config.services.gitea.httpPort; "gitea.nyanlout.re" = simpleReverse config.services.gitea.httpPort;
"musique.nyanlout.re" = simpleReverse config.services.navidrome.settings.Port; "musique.nyanlout.re" = simpleReverse config.services.navidrome.settings.Port;
"photo.nyanlout.re" = recursiveUpdate (authReverse config.services.photoprism.port) { "photo.nyanlout.re" = recursiveUpdate (simpleReverse config.services.photoprism.port) {
locations."/" = { locations."/" = {
proxyWebsockets = true; proxyWebsockets = true;
}; };