diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-08-27 09:41:27 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-08-27 09:41:27 -0700 |
commit | 33b2abe35eb7ab449a3056017b06c5cf2793abf8 (patch) | |
tree | 3da620d0b2254a71f373a9bab364dde4ddc57980 /hosts/arrakis/hardware-configuration.nix | |
parent | ce97d32e8772c47a2ef96c6ffd9e6a718bb9c94d (diff) | |
download | nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.tar nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.tar.gz nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.tar.bz2 nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.tar.lz nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.tar.xz nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.tar.zst nix-33b2abe35eb7ab449a3056017b06c5cf2793abf8.zip |
Add caladan NFS mounts @arrakis
Diffstat (limited to '')
-rw-r--r-- | hosts/arrakis/hardware-configuration.nix | 18 |
1 files changed, 18 insertions, 0 deletions
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"; |