12 lines
200 B
Nix
12 lines
200 B
Nix
{ ... }:
|
|
|
|
{
|
|
home-manager.users.charlotte = { ... }: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
compression = true;
|
|
hashKnownHosts = true;
|
|
serverAliveInterval = 300;
|
|
};
|
|
};
|
|
}
|