From ceb6297203062abee8e7106a49a3d5e686ef9b31 Mon Sep 17 00:00:00 2001 From: Bun Date: Wed, 30 Apr 2025 20:29:57 -0400 Subject: [PATCH] Add Prophet mount to Kitty --- hosts/kitty/filesystems/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/kitty/filesystems/default.nix b/hosts/kitty/filesystems/default.nix index 118bbcdf..29880794 100644 --- a/hosts/kitty/filesystems/default.nix +++ b/hosts/kitty/filesystems/default.nix @@ -18,5 +18,14 @@ "soft" ]; }; + "/home/${config.sysusers.main}/Network/Prophet" = { + device = "mx.nixfox.ca:/storage"; + fsType = "nfs4"; + options = [ + "noauto" + "soft" + "x-systemd.automount" + ]; + }; }; }