From 9d3ba741cd717ffca41922e2766f8a32a04f00fe Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 21 Aug 2024 01:17:26 +0200 Subject: [PATCH] Add clips volume --- ServeNix/hardware-configuration.nix | 5 +++++ ServeNix/services/box-stash.nix | 1 + 2 files changed, 6 insertions(+) diff --git a/ServeNix/hardware-configuration.nix b/ServeNix/hardware-configuration.nix index 54f5c88..05dbb95 100644 --- a/ServeNix/hardware-configuration.nix +++ b/ServeNix/hardware-configuration.nix @@ -69,6 +69,11 @@ fsType = "nfs"; }; + "/media/Stash-Clips" = { + device = "192.168.86.20:/mnt/WD Blue Stripe 2T/Clips"; + fsType = "nfs"; + }; + "/media/Stash-Usenet" = { device = "192.168.86.20:/mnt/WD Blue Stripe 2T/Usenet"; fsType = "nfs"; diff --git a/ServeNix/services/box-stash.nix b/ServeNix/services/box-stash.nix index 6779251..4bcb1c5 100644 --- a/ServeNix/services/box-stash.nix +++ b/ServeNix/services/box-stash.nix @@ -69,6 +69,7 @@ volumes = [ "/media/Stash-Picture:/data/picture" "/media/Stash-Video:/data/video" + "/media/Stash-Clips:/data/clips" "box-stash_config:/root/.stash" "box-stash_metadata:/metadata"