moves /mnt/20tb/ away to just /mnt
This commit is contained in:
@ -11,7 +11,7 @@ services:
|
||||
- host.docker.internal:host-gateway
|
||||
volumes:
|
||||
- ./data/radarr-config:/config
|
||||
- /mnt/20tb:/storage
|
||||
- /mnt:/storage
|
||||
restart: "unless-stopped"
|
||||
|
||||
sonarr:
|
||||
@ -21,7 +21,7 @@ services:
|
||||
- TZ=Europe/Amsterdam
|
||||
volumes:
|
||||
- ./data/sonarr-config:/config
|
||||
- /mnt/20tb:/storage
|
||||
- /mnt:/storage
|
||||
ports:
|
||||
- 8989:8989
|
||||
extra_hosts:
|
||||
@ -38,7 +38,7 @@ services:
|
||||
- host.docker.internal:host-gateway
|
||||
volumes:
|
||||
- ./data/lidarr-config:/config
|
||||
- /mnt/20tb:/storage
|
||||
- /mnt:/storage
|
||||
restart: unless-stopped
|
||||
|
||||
whisparr:
|
||||
@ -51,7 +51,7 @@ services:
|
||||
- host.docker.internal:host-gateway
|
||||
volumes:
|
||||
- ./data/whisparr-config:/config
|
||||
- /mnt/20tb:/storage
|
||||
- /mnt:/storage
|
||||
restart: unless-stopped
|
||||
|
||||
prowlarr:
|
||||
|
@ -1,18 +1,12 @@
|
||||
{ ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
files = builtins.removeAttrs (builtins.readDir ./.) [ "default.nix" ];
|
||||
|
||||
# Import all other .nix files as modules
|
||||
moduleFiles = builtins.map (fname: ./. + "/${fname}") (builtins.attrNames files);
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./arr-stack.nix
|
||||
./duplicati.nix
|
||||
./factorio.nix
|
||||
./gitea.nix
|
||||
./golink.nix
|
||||
./immich.nix
|
||||
./minecraft.nix
|
||||
./plex.nix
|
||||
./sabnzbd.nix
|
||||
./satisfactory.nix
|
||||
./stash.nix
|
||||
./torrent.nix
|
||||
./wireguard.nix
|
||||
];
|
||||
# Import all the package modules
|
||||
imports = moduleFiles;
|
||||
}
|
||||
|
@ -18,9 +18,9 @@ services:
|
||||
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
|
||||
volumes:
|
||||
- ./data/plex:/config
|
||||
- /mnt/20tb/Movies:/movies
|
||||
- /mnt/20tb/TV_Shows:/tvshows
|
||||
- /mnt/20tb/Music:/music
|
||||
- /mnt/movies:/movies
|
||||
- /mnt/tvshows:/tvshows
|
||||
- /mnt/music:/music
|
||||
restart: unless-stopped
|
||||
|
||||
tautulli:
|
||||
|
@ -6,7 +6,7 @@ services:
|
||||
- TZ=Europe/Amsterdam
|
||||
volumes:
|
||||
- ./data:/config
|
||||
- /mnt/20tb:/storage
|
||||
- /mnt:/storage
|
||||
ports:
|
||||
- 7788:8080
|
||||
restart: unless-stopped
|
||||
|
@ -17,7 +17,7 @@ services:
|
||||
## Keep configs, scrapers, and plugins here.
|
||||
- ./data/config:/root/.stash
|
||||
## Point this at your collection.
|
||||
- /mnt/20tb/Stash:/data
|
||||
- /mnt/stash:/data
|
||||
## This is where your stash's metadata lives
|
||||
- ./data/metadata:/metadata
|
||||
## Any other cache content.
|
||||
|
@ -29,7 +29,7 @@ services:
|
||||
volumes:
|
||||
- "/etc/localtime:/etc/localtime:ro"
|
||||
- ./data/qbit:/config
|
||||
- /mnt/20tb:/storage
|
||||
- /mnt:/storage
|
||||
depends_on:
|
||||
- gluetun
|
||||
restart: always
|
||||
|
Reference in New Issue
Block a user