diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-08-24 18:42:32 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-08-24 18:42:32 -0700 |
| commit | 50b2a7c4b6860baa12f4861a208ca7d3a7c417ae (patch) | |
| tree | 8cfeadd1a265387e2caf16f41e20615c6ac208a8 /hosts/caladan/hardware-configuration.nix | |
| parent | a0e9e20e9b867d1918c10390946665503d3c9a7f (diff) | |
| download | nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.tar nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.tar.gz nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.tar.bz2 nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.tar.lz nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.tar.xz nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.tar.zst nix-50b2a7c4b6860baa12f4861a208ca7d3a7c417ae.zip | |
Add audio NFS share
Diffstat (limited to '')
| -rw-r--r-- | hosts/caladan/hardware-configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/caladan/hardware-configuration.nix b/hosts/caladan/hardware-configuration.nix index 645d43e..9c9b400 100644 --- a/hosts/caladan/hardware-configuration.nix +++ b/hosts/caladan/hardware-configuration.nix @@ -30,6 +30,14 @@ ]; }; + "/mnt/audio" = { + device = "192.168.1.2:/srv/caladan/audio"; + fsType = "nfs"; + options = [ + "nfsvers=4.2" + ]; + }; + "/mnt/downloads" = { device = "192.168.1.2:/srv/caladan/downloads"; fsType = "nfs"; |
