palette/home-manager/config.nix
George Kaklamanos 844bdf54a9
config: Configure syncthing and gpg-agent
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
2024-08-03 16:39:23 +03:00

24 lines
475 B
Nix

{pkgs, ...}: {
imports = [
./homeFiles.nix
./fish.nix
./starship.nix
./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;
};
}