From 33b2abe35eb7ab449a3056017b06c5cf2793abf8 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Wed, 27 Aug 2025 09:41:27 -0700 Subject: Add caladan NFS mounts @arrakis --- hosts/arrakis/hardware-configuration.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'hosts/arrakis/hardware-configuration.nix') diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix index c7a6652..1948809 100644 --- a/hosts/arrakis/hardware-configuration.nix +++ b/hosts/arrakis/hardware-configuration.nix @@ -21,6 +21,24 @@ MOZ_DISABLE_RDD_SANDBOX = "1"; }; + fileSystems."/srv/caladan/downloads" = { + device = "/data/home/nipsy/downloads"; + fsType = "none"; + options = [ + "bind" + "noauto" + ]; + }; + + fileSystems."/srv/caladan/www" = { + device = "/data/home/nipsy/www"; + fsType = "none"; + options = [ + "bind" + "noauto" + ]; + }; + fileSystems."/srv/nfs/keepers" = { device = "/data/home/nipsy/downloads/keepers"; fsType = "none"; -- cgit v1.2.3