palette/home-manager/config.nix
George Kaklamanos bae215ec34
keepassxc: Convert to usage of home-manager module
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
2025-06-20 23:30:13 +03:00

28 lines
540 B
Nix

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