new hard drive fstab adjustments
newhd
This commit is contained in:
@@ -30,12 +30,12 @@
|
|||||||
device = "/dev/disk/by-uuid/8cd728f6-0d5b-4cea-8f7d-01aad11192c1";
|
device = "/dev/disk/by-uuid/8cd728f6-0d5b-4cea-8f7d-01aad11192c1";
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
};
|
};
|
||||||
hnbox = {
|
disk4 = {
|
||||||
device = "/dev/disk/by-uuid/c7dd2d5a-b0b3-46a0-aca9-3d4975c1f0bc";
|
device = "/dev/disk/by-uuid/7fcac808-491f-4846-a4a9-a34cc77cb43d";
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
};
|
};
|
||||||
seedbox = {
|
hnbox = {
|
||||||
device = "/dev/disk/by-uuid/04f06a3e-a91f-476b-9a4b-b9c722ba99e7";
|
device = "/dev/disk/by-uuid/c7dd2d5a-b0b3-46a0-aca9-3d4975c1f0bc";
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -93,17 +93,6 @@
|
|||||||
"datacow"
|
"datacow"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"/mnt/disks/seedbox" = {
|
|
||||||
device = "/dev/mapper/seedbox";
|
|
||||||
fsType = "btrfs";
|
|
||||||
options = [
|
|
||||||
"subvol=@data"
|
|
||||||
"compress=zstd:3"
|
|
||||||
"space_cache=v2"
|
|
||||||
"commit=120"
|
|
||||||
"datacow"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
"/mnt/disks/hnbox" = {
|
"/mnt/disks/hnbox" = {
|
||||||
device = "/dev/mapper/hnbox";
|
device = "/dev/mapper/hnbox";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
@@ -134,13 +123,8 @@
|
|||||||
options = [ "bind" "ro" ];
|
options = [ "bind" "ro" ];
|
||||||
depends = [ "/mnt/pool" ];
|
depends = [ "/mnt/pool" ];
|
||||||
};
|
};
|
||||||
"/mnt/jellyfin/tutorials" = {
|
|
||||||
device = "/mnt/pool/tutorials";
|
|
||||||
options = [ "bind" "ro" ];
|
|
||||||
depends = [ "/mnt/pool" ];
|
|
||||||
};
|
|
||||||
# NFS
|
# NFS
|
||||||
"/export/pool_nfs" = {
|
"/export/pool" = {
|
||||||
device = "/mnt/pool";
|
device = "/mnt/pool";
|
||||||
options = [ "bind" ];
|
options = [ "bind" ];
|
||||||
depends = [ "/mnt/pool" ];
|
depends = [ "/mnt/pool" ];
|
||||||
@@ -150,10 +134,10 @@
|
|||||||
options = [ "bind" ];
|
options = [ "bind" ];
|
||||||
depends = [ "/mnt/pool" ];
|
depends = [ "/mnt/pool" ];
|
||||||
};
|
};
|
||||||
"/export/seedbox" = {
|
"/export/disks" = {
|
||||||
device = "/mnt/disks/seedbox";
|
device = "/mnt/disks";
|
||||||
options = [ "bind" ];
|
options = [ "bind" ];
|
||||||
depends = [ "/mnt/disks/seedbox" ];
|
depends = [ "/mnt/disks" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.nfs = {
|
services.nfs = {
|
||||||
@@ -162,8 +146,8 @@
|
|||||||
exports = ''
|
exports = ''
|
||||||
/export workstation(rw,fsid=0,no_subtree_check)
|
/export workstation(rw,fsid=0,no_subtree_check)
|
||||||
/export/jawz workstation(rw,nohide,insecure,no_subtree_check)
|
/export/jawz workstation(rw,nohide,insecure,no_subtree_check)
|
||||||
/export/seedbox workstation(rw,nohide,insecure,no_subtree_check)
|
/export/disks workstation(rw,nohide,insecure,no_subtree_check)
|
||||||
/export/pool_nfs workstation(rw,nohide,insecure,no_subtree_check,async,no_root_squash,fsid=1)
|
/export/pool workstation(rw,nohide,insecure,no_subtree_check)
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user