Add a direct mount of the Btrfs on Jeremiah

Add a mountpoint for the root Btrfs volume on Jeremiah so that the root
of the volume can be accessed
Also, create and mount a PVE subvol for fiddling around with the Btrfs
suport in PVE
This commit is contained in:
Greg Hellings
2025-04-17 16:52:11 -05:00
parent f75ae5c983
commit 67e626c470
3 changed files with 20 additions and 2 deletions
+9
View File
@@ -42,6 +42,15 @@
options = [ "subvol=var" ];
device = "/dev/nvme0n1p1";
};
"/var/pve" = {
fsType = "btrfs";
options = [ "subvol=pve" ];
device = "/dev/nvme0n1p1";
};
"/btrfs" = {
fsType = "btrfs";
device = "/dev/nvme0n1p1";
};
"/media/proxmox" = {
device = "10.42.1.4:/volume1/proxmox";
fsType = "nfs";