summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/time-machine.nix
diff options
context:
space:
mode:
authorlassulus <lass@lassul.us>2017-06-01 12:49:36 +0200
committerlassulus <lass@lassul.us>2017-06-01 12:49:36 +0200
commite50bc4f3eb3dac13bba4ae6158e839a52455c3c3 (patch)
treeb3c1fc1f3e00312e92e4ab747c31839db665eebd /makefu/2configs/time-machine.nix
parent73b073c3fe037f31e05828a1071c9b4b19f7a2ff (diff)
parent9e04d0132133840fba14aca194f18925e3f353d5 (diff)
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/time-machine.nix')
-rw-r--r--makefu/2configs/time-machine.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/makefu/2configs/time-machine.nix b/makefu/2configs/time-machine.nix
new file mode 100644
index 00000000..90d44e54
--- /dev/null
+++ b/makefu/2configs/time-machine.nix
@@ -0,0 +1,31 @@
+let
+ time-machine-path = "/media/crypt2/backup/time-machine/misa";
+in {
+ networking.firewall.allowedTCPPorts = [
+ 548 # netatalk
+ ];
+
+ services = {
+ netatalk = {
+ enable = true;
+
+ volumes = {
+ "misa-time-machine" = {
+ "time machine" = "yes";
+ path = time-machine-path;
+ "valid users" = "misa";
+ };
+ };
+ };
+
+ avahi = {
+ enable = true;
+ nssmdns = true;
+
+ publish = {
+ enable = true;
+ userServices = true;
+ };
+ };
+ };
+}