mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
11 lines
189 B
Nix
11 lines
189 B
Nix
{ meta, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
controlMaster = "auto";
|
|
controlPersist = "10m";
|
|
hashKnownHosts = true;
|
|
compression = true;
|
|
};
|
|
}
|