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,