switching all smb to nfs

This commit is contained in:
Matt Nish-Lapidus 2025-04-05 14:11:59 -04:00
parent a1434cee4e
commit 68c5ca2ce7
3 changed files with 9 additions and 42 deletions

View file

@ -6,7 +6,7 @@
fileSystems =
let
opts = [ "nfsvers=4.1" "noatime" "noauto" ];
opts = [ "nfsvers=4.1" "noatime" "noauto" "x-systemd.automount" ];
in {
"/mnt/filez/media" = {
@ -16,7 +16,7 @@
};
"/mnt/filez/music-production" = {
device = "filez:/volume1/Music Production";
device = "filez:/volume1/MusicProduction";
fsType = "nfs";
options = opts;
};
@ -28,7 +28,7 @@
};
"/mnt/filez/photos" = {
device = "filez:/volume1/Photo Storage";
device = "filez:/volume1/Photos";
fsType = "nfs";
options = opts;
};