From 4988eef96a5dc128ba3d048198d1f7659640d723 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Wed, 26 Feb 2025 14:46:27 -0800 Subject: [PATCH] Fix: Add missing SMB share "recordings". --- dotfiles/modules/smb.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dotfiles/modules/smb.nix b/dotfiles/modules/smb.nix index 8b1e3cf7..5ad15d60 100644 --- a/dotfiles/modules/smb.nix +++ b/dotfiles/modules/smb.nix @@ -57,4 +57,10 @@ fsType = "cifs"; options = [ smb.permissions_opts smb.automount_opts ]; }; + fileSystems."recordings" = { + mountPoint = "/mnt/recordings"; + device = "//192.168.1.12/Recordings"; + fsType = "cifs"; + options = [ smb.permissions_opts smb.automount_opts ]; + }; }