From 66b255ed708b095513015788cc49e0df8ab2d780 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Wed, 27 Aug 2025 09:51:41 -0700 Subject: Add NFS mounts @caladan --- hosts/caladan/hardware-configuration.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'hosts') 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; -- cgit v1.2.3