2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2024-12-22 04:07:28 +01:00

challenger: Disable NFS in both directions to avoid extreme crashes

This commit is contained in:
Felix Albrigtsen 2024-11-23 08:50:01 +01:00
parent c49fc1fb4d
commit 12773b8c62
2 changed files with 14 additions and 14 deletions

View File

@ -16,6 +16,6 @@
# ''; # '';
# }; # };
networking.firewall.allowedTCPPorts = [ 111 2049 20048 ]; # networking.firewall.allowedTCPPorts = [ 111 2049 20048 ];
networking.firewall.allowedUDPPorts = [ 111 20048]; # networking.firewall.allowedUDPPorts = [ 111 20048];
} }

View File

@ -18,16 +18,16 @@
interval = "Wed *-*-8..14 00:00:00"; interval = "Wed *-*-8..14 00:00:00";
}; };
fileSystems = { # fileSystems = {
"/mnt/feal-syn1/backup" = { # "/mnt/feal-syn1/backup" = {
device = "feal-syn1.home.feal.no:/volume2/backup"; # device = "feal-syn1.home.feal.no:/volume2/backup";
fsType = "nfs"; # fsType = "nfs";
options = [ # options = [
"defaults" # "defaults"
"noatime" # "noatime"
"rw" # "rw"
"nfsvers=3" # "nfsvers=3"
]; # ];
}; # };
}; # };
} }