From d39dce176f25b0bc9ac6f06aabe38f68b3bfd300 Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Fri, 22 Nov 2024 20:10:23 +0100 Subject: [PATCH] Re-add media mount --- systems/base/fs.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/systems/base/fs.nix b/systems/base/fs.nix index c830a57..2c8f6b9 100644 --- a/systems/base/fs.nix +++ b/systems/base/fs.nix @@ -28,4 +28,10 @@ autoResize = true; neededForBoot = true; }; + + fileSystems."/media" = { + device = "vm@b9b22d11-3492-49a6-92b7-b36cdf0161fe.cephfs=/media"; + fsType = "ceph"; + options = [ "nofail" ]; + }; }