diff options
| author | Anonymous <anon@anon.com> | 2020-08-11 13:10:16 +0000 |
|---|---|---|
| committer | Anonymous <anon@anon.com> | 2020-08-11 13:10:16 +0000 |
| commit | 27d65590ee23698f148f76abd4070290375215db (patch) | |
| tree | eebf01703d8600e7284260fbd8a45a7ccceff80b | |
| parent | a21591b0994c52babfb84af5f429280967a704a0 (diff) | |
Updated Home (markdown)
| -rw-r--r-- | Home.md | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -49,5 +49,27 @@ This is the wiki for retiolum. - [Transmission (yellow.r)](http://yellow.r:9091/transmission/web) - [Directory listing](http://yellow.r/) - - TODO: prism exports nfs as well? + - NFS export: + +```nix +{ + fileSystems."/mnt/prism" = { + device = "prism.r:/export/download"; + fsType = "nfs"; + options = [ + "timeo=14" + "noauto" + "noatime" + "nodiratime" + "noac" + "nocto" + "ro" + "x-systemd.automount" + "x-systemd.device-timeout=1" + "x-systemd.idle-timeout=1min" + ]; + }; +} +``` + - [http://helsinki.r](http://helsinki.r) |
