nixos/modules/data-share/default.nix

9 lines
211 B
Nix
Raw Normal View History

2022-11-03 23:11:12 +01:00
{ ... }:
2022-01-12 21:57:27 +01:00
{
fileSystems."/mnt/data" = {
2022-03-07 09:44:42 +01:00
device = "10.7.89.108:server_data";
2022-01-12 21:57:27 +01:00
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=300" "noatime" "nfsvers=4.0" ];
2022-01-12 21:57:27 +01:00
};
}