Files
nix-config/hosts/common/core/ssh.nix
Thomas Syms 5c62858c37 Update flake.lock and vscode configuration
- Updated package references in flake.lock for various dependencies.
- Changed VSCode package from vscodium to vscode and updated extensions.
- Enabled SSH agent start in ssh.nix.
- Refined overlays in default.nix for better package management.
2025-07-23 11:13:43 -03:00

11 lines
145 B
Nix

{
lib,
pkgs,
...
}: {
programs.ssh = lib.optionalAttrs pkgs.stdenv.isLinux {
startAgent = true;
enableAskPassword = true;
};
}