blob: ee5856c98690f64d273c0b9055c984e7a4df42ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ pkgs, lib, ... }:
with lib;
{
config = {
services.borgbackup.repos.jotnar = {
path = "/srv/backup/borg/jotnar";
authorizedKeysAppendOnly = let
dir = ./jotnar;
toAuthKey = fname: ftype: if ftype != "regular" || !(hasSuffix ".pub" fname) then null else builtins.readFile (dir + "/${fname}");
in filter (v: v != null) (lib.mapAttrsToList toAuthKey (builtins.readDir dir));
};
boot.postBootCommands = mkBefore ''
${pkgs.findutils}/bin/find /srv/backup/borg -type d -empty -delete
'';
users.users.borg.extraGroups = ["ssh"];
services.openssh.extraConfig = ''
Match User borg
ClientAliveInterval 10
ClientAliveCountMax 30
Match All
'';
};
}
|