diff options
| -rw-r--r-- | hosts/poweredge-pro/dns-overrides.nix | 2 | ||||
| -rw-r--r-- | hosts/poweredge-pro/filebrowser.nix | 4 | ||||
| -rw-r--r-- | hosts/poweredge-pro/fileshares.nix | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/hosts/poweredge-pro/dns-overrides.nix b/hosts/poweredge-pro/dns-overrides.nix index 0ed161c..887eac2 100644 --- a/hosts/poweredge-pro/dns-overrides.nix +++ b/hosts/poweredge-pro/dns-overrides.nix @@ -1,7 +1,7 @@ let dns.overrides.records = { "docs.chexx.net" = { recordType = "A"; value = "192.168.77.3"; }; - "files.chexx.net" = { recordType = "A"; value = "192.168.77.12"; }; + "files.chexx.net" = { recordType = "A"; value = "192.168.77.3"; }; "vault.chexx.net" = { recordType = "A"; value = "192.168.77.3"; }; "wg-easy.chexx.net" = { recordType = "A"; value = "192.168.77.3"; }; }; diff --git a/hosts/poweredge-pro/filebrowser.nix b/hosts/poweredge-pro/filebrowser.nix index b719400..4c63af3 100644 --- a/hosts/poweredge-pro/filebrowser.nix +++ b/hosts/poweredge-pro/filebrowser.nix @@ -8,11 +8,11 @@ # Host path bindMounts = { "/var/lib/filebrowser/data/chexx" = { - hostPath = "/Storage/chexx"; + hostPath = "/VMDisk/shares/chexx"; isReadOnly = true; }; "/var/lib/filebrowser/data/Scans" = { - hostPath = "/Storage/Scans"; + hostPath = "/VMDisk/shares/scans/"; isReadOnly = true; }; }; diff --git a/hosts/poweredge-pro/fileshares.nix b/hosts/poweredge-pro/fileshares.nix index 0170918..65ce84d 100644 --- a/hosts/poweredge-pro/fileshares.nix +++ b/hosts/poweredge-pro/fileshares.nix @@ -14,7 +14,7 @@ # Shares services._fileShares.shares = { chexx = { - path = "/Storage/chexx"; + path = "/VMDisk/shares/chexx"; smb = { enable = true; allowGroup = "chexx"; @@ -24,7 +24,7 @@ nfs.enable = true; }; scans = { - path = "/Storage/Scans"; + path = "/VMDisk/shares/scans"; smb = { enable = true; allowGroup = "scans"; @@ -41,7 +41,7 @@ }; }; tk = { - path = "/home/timmy"; + path = "/home/timmy/docs/shared"; nfs.enable = true; }; }; |
