From 28a962fe30c2446a5e559fc48be0b5c2c6fcd827 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Wed, 13 Mar 2024 19:09:13 -0500 Subject: [PATCH] Add time machine to smb. --- nixos/gandalf/configuration.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/nixos/gandalf/configuration.nix b/nixos/gandalf/configuration.nix index d861fca..fc78a45 100644 --- a/nixos/gandalf/configuration.nix +++ b/nixos/gandalf/configuration.nix @@ -97,6 +97,28 @@ "force user" = "www-data"; "force group" = "www-data"; }; + tm_joe = { + path = "/eru/tm_joe"; + "valid users" = "jahanson"; + public = "no"; + writeable = "yes"; + "guest ok" = "no"; + "force user" = "jahanson"; + "fruit:aapl" = "yes"; + "fruit:time machine" = "yes"; + "vfs objects" = "catia fruit streams_xattr"; + }; + tm_elisia = { + path = "/eru/tm_elisia"; + "valid users" = "emhanson"; + public = "no"; + writeable = "yes"; + "guest ok" = "no"; + "force user" = "emhanson"; + "fruit:aapl" = "yes"; + "fruit:time machine" = "yes"; + "vfs objects" = "catia fruit streams_xattr"; + }; }; };