diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-08-27 09:51:41 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-08-27 09:51:41 -0700 |
commit | 66b255ed708b095513015788cc49e0df8ab2d780 (patch) | |
tree | 5f859f278d2c5be63adfcc1cac8291d38be74c51 | |
parent | 33b2abe35eb7ab449a3056017b06c5cf2793abf8 (diff) | |
download | nix-66b255ed708b095513015788cc49e0df8ab2d780.tar nix-66b255ed708b095513015788cc49e0df8ab2d780.tar.gz nix-66b255ed708b095513015788cc49e0df8ab2d780.tar.bz2 nix-66b255ed708b095513015788cc49e0df8ab2d780.tar.lz nix-66b255ed708b095513015788cc49e0df8ab2d780.tar.xz nix-66b255ed708b095513015788cc49e0df8ab2d780.tar.zst nix-66b255ed708b095513015788cc49e0df8ab2d780.zip |
Add NFS mounts @caladan
Diffstat (limited to '')
-rw-r--r-- | hosts/caladan/hardware-configuration.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/caladan/hardware-configuration.nix b/hosts/caladan/hardware-configuration.nix index 74852d5..302606c 100644 --- a/hosts/caladan/hardware-configuration.nix +++ b/hosts/caladan/hardware-configuration.nix @@ -21,6 +21,22 @@ MOZ_DISABLE_RDD_SANDBOX = "1"; }; + fileSystems."/mnt/downloads" = { + device = "192.168.1.2:/srv/caladan/downloads"; + fsType = "nfs"; + options = [ + "nfsvers=4.2" + ]; + }; + + fileSystems."/mnt/www" = { + device = "192.168.1.2:/srv/caladan/www"; + fsType = "nfs"; + options = [ + "nfsvers=4.2" + ]; + }; + hardware = { bluetooth.enable = true; |