switching all smb to nfs

This commit is contained in:
Matt Nish-Lapidus 2025-04-05 14:37:22 -04:00
parent 0b53ae3b9c
commit b0c634ab81
3 changed files with 4 additions and 8 deletions

View file

@ -3,11 +3,11 @@
{
fileSystems =
let
opts = [ "nfsvers=4.1" "noatime" "noauto" "x-systemd.automount" ];
opts = [ "noatime" "noauto" "x-systemd.automount" ];
in {
"/mnt/import" = {
device = "media-server:/import";
device = "media-server:/export/import";
fsType = "nfs";
options = opts;
};