nixos-config/programs/ssh/default.nix
Charlotte Van Petegem 4256a94080 Initial commit
2020-02-10 17:27:13 +01:00

12 lines
200 B
Nix

{ ... }:
{
home-manager.users.charlotte = { ... }: {
programs.ssh = {
enable = true;
compression = true;
hashKnownHosts = true;
serverAliveInterval = 300;
};
};
}