config: Configure syncthing and gpg-agent

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-08-03 16:39:23 +03:00
parent e3153ed581
commit 844bdf54a9
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D

View file

@ -6,4 +6,19 @@
./firefox.nix
./cli.nix
];
services.syncthing = {
enable = true;
tray.enable = true;
};
services.gpg-agent = {
enable = true;
enableSshSupport = true;
enableFishIntegration = true;
pinentryPackage = pkgs.pinentry-tty;
maxCacheTtl = 60480000;
maxCacheTtlSsh = 60480000;
defaultCacheTtl = 60480000;
defaultCacheTtlSsh = 60480000;
};
}