palette/home-manager/config.nix
George Kaklamanos fbcdfa19ed
config: Add ssh.nix
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
2025-05-21 15:40:06 +03:00

26 lines
503 B
Nix

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