From d1ce8d3e718ece7029efbdc6a9a4c99d957aec75 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Mon, 27 Jul 2026 03:26:31 +1000 Subject: [PATCH] add proxmox iso share --- modules/build-types/server.nix | 1 + variables.nix | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/modules/build-types/server.nix b/modules/build-types/server.nix index fdce1af..e52119b 100644 --- a/modules/build-types/server.nix +++ b/modules/build-types/server.nix @@ -83,6 +83,7 @@ in ${vars.storageRoot}/${vars.nfsShares.dockerDatabases.subpath} ${vars.lanCidr}(rw,sync,no_subtree_check,no_root_squash) ${vars.storageRoot}/${vars.nfsShares.nextcloudData.subpath} ${vars.lanCidr}(rw,sync,no_subtree_check,no_root_squash) ${vars.storageRoot}/${vars.nfsShares.raspiVolumes.subpath} ${vars.lanCidr}(rw,sync,no_subtree_check,no_root_squash) + ${vars.storageRoot}/${vars.nfsShares.proxmoxVolumes.subpath} ${vars.lanCidr}(rw,sync,no_subtree_check,no_root_squash) ''; }; diff --git a/variables.nix b/variables.nix index a1f23f3..f24904f 100644 --- a/variables.nix +++ b/variables.nix @@ -103,6 +103,10 @@ subpath = "raspi/volumes"; mountpoint = "/mnt/raspi-backup"; }; + proxmoxVolumes = { + subpath = "proxmox/iso"; + mountpoint = "/mnt/iso"; + }; }; # The Raspberry Pi's own NFS export — not under storageRoot/nfsServerHost,