1

Compare commits

...

2 Commits

Author SHA1 Message Date
ee399dea48 Add music lib to jellyfin 2024-05-23 09:30:24 +02:00
9688404763 Update box 2024-05-23 09:30:18 +02:00
4 changed files with 57 additions and 0 deletions

View File

@ -52,6 +52,11 @@
fsType = "nfs"; fsType = "nfs";
}; };
"/media/TV-Music" = {
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music";
fsType = "nfs";
};
# WD Blue Stripe Shares # WD Blue Stripe Shares
"/media/Stash-Video" = { "/media/Stash-Video" = {

View File

@ -18,6 +18,7 @@
volumes = [ volumes = [
"/media/Stash-Video:/media/Video" "/media/Stash-Video:/media/Video"
"/media/Stash-Picture:/media/Picture"
"box-fileflows_temp:/temp" "box-fileflows_temp:/temp"
"box-fileflows_logs:/app/Logs" "box-fileflows_logs:/app/Logs"

View File

@ -4,11 +4,61 @@
pkgs, pkgs,
... ...
}: { }: {
virtualisation.oci-containers.containers.box-stash-cdp = {
image = "chromedp/headless-shell:latest";
autoStart = true;
dependsOn = [
# "pihole"
];
ports = [
# "9222:9222"
];
volumes = [];
environment = {};
extraOptions = [
# "--gpus=all"
# "--shm-size=2G"
"--net=behind-nginx"
];
};
virtualisation.oci-containers.containers.box-stash-flaresolverr = {
image = "ghcr.io/flaresolverr/flaresolverr:latest";
autoStart = true;
dependsOn = [
# "pihole"
];
ports = [
# "8191:8191"
];
volumes = [];
environment = {
LOG_LEVEL = "info";
};
extraOptions = [
# "--gpus=all"
# "--shm-size=2G"
"--net=behind-nginx"
];
};
virtualisation.oci-containers.containers.box-stash = { virtualisation.oci-containers.containers.box-stash = {
image = "stashapp/stash:latest"; image = "stashapp/stash:latest";
autoStart = true; autoStart = true;
dependsOn = [ dependsOn = [
"box-stash-cdp"
"box-stash-flaresolverr"
# "pihole" # "pihole"
]; ];

View File

@ -19,6 +19,7 @@
volumes = [ volumes = [
"/media/Show:/data/tvshows" "/media/Show:/data/tvshows"
"/media/Movie:/data/movies" "/media/Movie:/data/movies"
"/media/TV-Music:/data/music"
"jellyfin_config:/config" "jellyfin_config:/config"
]; ];