diff options
| author | Christian <[email protected]> | 2026-07-02 20:30:08 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-07-02 20:30:08 -0500 |
| commit | bd316d98d957f6024f4287dc1eb4484e8f4d5da7 (patch) | |
| tree | 572f5330f34e797f8a24be2558959d404b0f4977 /modules | |
| parent | 6449393ff48ab505e55862ade1093a2f1ce4d243 (diff) | |
Book NFS
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/nfs.nix | 16 |
1 files changed, 16 insertions, 0 deletions
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" + ]; + }; +} |
