From bd316d98d957f6024f4287dc1eb4484e8f4d5da7 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 2 Jul 2026 20:30:08 -0500 Subject: Book NFS --- modules/nfs.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/nfs.nix (limited to 'modules/nfs.nix') diff --git a/modules/nfs.nix b/modules/nfs.nix new file mode 100644 index 0000000..f997f28 --- /dev/null +++ b/modules/nfs.nix @@ -0,0 +1,16 @@ +{ ... }: + +{ + fileSystems."/mnt/books" = { + device = "10.67.40.1:/home/christian/books"; + fsType = "nfs"; + options = [ + "x-systemd.automount" + "x-systemd.requires=wg-quick-wg0.service" + "x-systemd.after=wg-quick-wg0.service" + "noauto" + "soft" + "timeo=30" + ]; + }; +} -- cgit v1.2.3