nix-dotfiles/home/sshconfig.nix

20 lines
240 B
Nix
Raw Normal View History

2024-09-11 12:03:23 +02:00
{ pkgs, lib, config, ... }:
{
imports = [
];
home.packages = with pkgs; [
openssh
sshfs
];
services.ssh-agent.enable = true;
programs.ssh = {
enable = true;
compression = true;
extraConfig = "";
};
}