2024-04-28 22:52:41 +03:00
|
|
|
{pkgs, ...}: {
|
2024-04-28 22:59:14 +03:00
|
|
|
imports = [
|
|
|
|
./homeFiles.nix
|
|
|
|
./fish.nix
|
|
|
|
./starship.nix
|
2024-04-28 23:01:54 +03:00
|
|
|
./firefox.nix
|
2024-04-28 23:04:19 +03:00
|
|
|
./cli.nix
|
2025-05-21 15:24:17 +03:00
|
|
|
./mpv.nix
|
2025-05-21 15:40:06 +03:00
|
|
|
./ssh.nix
|
2024-04-28 22:59:14 +03:00
|
|
|
];
|
2024-08-03 16:39:23 +03:00
|
|
|
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;
|
|
|
|
};
|
2024-04-28 22:52:41 +03:00
|
|
|
}
|