summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/time-machine.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/2configs/time-machine.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/2configs/time-machine.nix')
-rw-r--r--makefu/2configs/time-machine.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/makefu/2configs/time-machine.nix b/makefu/2configs/time-machine.nix
deleted file mode 100644
index 90d44e54..00000000
--- a/makefu/2configs/time-machine.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-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;
- };
- };
- };
-}