diff --git a/systems/jeeves/configuration.nix b/systems/jeeves/configuration.nix index e762980..5899f9f 100644 --- a/systems/jeeves/configuration.nix +++ b/systems/jeeves/configuration.nix @@ -72,7 +72,7 @@ }; "books" = { id = "6uppx-vadmy"; # cspell:disable-line - path = "/ZFS/storage/Syncthing/books"; + path = "/zfs/storage/Syncthing/books"; devices = [ "bob" "phone" @@ -82,7 +82,7 @@ }; "important" = { id = "4ckma-gtshs"; # cspell:disable-line - path = "/ZFS/storage/Syncthing/important"; + path = "/zfs/storage/Syncthing/important"; devices = [ "bob" "phone" @@ -92,7 +92,7 @@ }; "music" = { id = "vprc5-3azqc"; # cspell:disable-line - path = "/ZFS/storage/Syncthing/music"; + path = "/zfs/storage/Syncthing/music"; devices = [ "bob" "phone" @@ -102,7 +102,7 @@ }; "projects" = { id = "vyma6-lqqrz"; # cspell:disable-line - path = "/ZFS/storage/Syncthing/projects"; + path = "/zfs/storage/Syncthing/projects"; devices = [ "bob" "rhapsody-in-green" diff --git a/systems/jeeves/docker/internal.nix b/systems/jeeves/docker/internal.nix index 7f9a76e..7eaf907 100644 --- a/systems/jeeves/docker/internal.nix +++ b/systems/jeeves/docker/internal.nix @@ -70,7 +70,7 @@ }; volumes = [ "/zfs/media/docker/configs/radarr:/config" - "/ZFS/storage/Plex/Movies:/movies" + "/zfs/storage/Plex/movies:/movies" "/zfs/torrenting/qbitvpn:/data" ]; autoStart = true; @@ -84,7 +84,7 @@ }; volumes = [ "/zfs/media/docker/configs/sonarr:/config" - "/ZFS/storage/Plex/TV:/tv" + "/zfs/storage/Plex/tv:/tv" "/zfs/torrenting/qbitvpn:/data" ]; autoStart = true; diff --git a/systems/jeeves/docker/web.nix b/systems/jeeves/docker/web.nix index b4d8377..97d4d27 100644 --- a/systems/jeeves/docker/web.nix +++ b/systems/jeeves/docker/web.nix @@ -11,7 +11,7 @@ image = "ubuntu/apache2:latest"; volumes = [ "/zfs/media/docker/templates/file_server/sites/:/etc/apache2/sites-enabled/" - "/ZFS/storage/main/Table_Top/:/data" + "/zfs/storage/main/Table_Top/:/data" ]; extraOptions = [ "--network=web" ]; autoStart = true;