From 7a57cf5327a7e236fab83ceefe846d4a68f2574c Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 15 Jun 2023 02:14:42 +0000 Subject: [PATCH] clients: fs: mount servo over nfs --- hosts/common/fs.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/hosts/common/fs.nix b/hosts/common/fs.nix index 46b7f2a2..7bc13e16 100644 --- a/hosts/common/fs.nix +++ b/hosts/common/fs.nix @@ -30,6 +30,25 @@ in "/libexec" ]; + fileSystems."/mnt/servo-nfs" = { + device = "servo-hn:/"; + noCheck = true; + fsType = "nfs"; + options = [ "x-systemd.automount" ]; + }; + # fileSystems."/mnt/servo-nfs-lan" = { + # device = "servo:/"; + # noCheck = true; + # fsType = "nfs"; + # options = [ "x-systemd.automount" ]; + # }; + # fileSystems."/mnt/servo-media-nfs" = { + # device = "10.0.10.5:/media"; + # noCheck = true; + # fsType = "nfs"; + # options = [ "x-systemd.automount" ]; + # }; + fileSystems."/mnt/servo-media-wan" = { device = "colin@uninsane.org:/var/lib/uninsane/media"; inherit (sshOpts) fsType;