all repos — nixfiles @ d7cefcf0500f02cd81eeadcde1193618fa6101fb

System and user configuration, managed by nix and home-manager

nanopi: keep an export of golink data in a git repo
Alan Pearce alan@alanpearce.eu
Fri, 31 May 2024 00:26:30 +0200
commit

d7cefcf0500f02cd81eeadcde1193618fa6101fb

parent

f6e78e0b82d886b3b628912a750fcad2ae8ca596

1 files changed, 21 insertions(+), 0 deletions(-)

jump to
M system/nanopi.nixsystem/nanopi.nix
@@ -70,6 +70,26 @@ ExecStart = "/bin/sh /etc/nixos/update-ip ${config.age.secrets.dyndns.path}";     };
   };
 
+  systemd.services.backup-golink = {
+    enable = true;
+    startAt = "daily";
+    description = "Export short links from golink";
+    path = with pkgs; [ curl gitMinimal ];
+    script = ''
+      [ -d golink ] || git init --quiet golink --initial-branch=main --shared=world
+      git config --global user.email linde@alanpearce.eu
+      cd golink
+      curl https://go.${ts_domain}/.export > links.json
+      git add links.json
+      git commit -m $(date +%F)
+    '';
+    serviceConfig = {
+      Type = "oneshot";
+      User = "linde";
+      WorkingDirectory = config.users.users.linde.home;
+    };
+  };
+
   services.journald.extraConfig = ''
     MaxRetentionSec=1 month
   '';
@@ -626,6 +646,7 @@ description = "Backup user for system 'linde'";       isSystemUser = true;
       shell = "/bin/sh";
       home = "/srv/backup/linde";
+      homeMode = "755";
       createHome = true;
       packages = with pkgs; [ rdiff-backup ];
       openssh.authorizedKeys.keys = [