all: consolidate ssh_config settings
This commit is contained in:
parent
935f1ae22c
commit
f132365414
11
default.nix
11
default.nix
@ -195,7 +195,16 @@ in {
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOkbSJWeWJyJjak/boaMTqzPVq91wfJz1P+I4rnBUsPW";
|
||||
};
|
||||
startAgent = true;
|
||||
extraConfig = "";
|
||||
extraConfig = ''
|
||||
agentTimeout = "100m";
|
||||
VerifyHostKeyDNS yes
|
||||
AddKeysToAgent confirm 90m
|
||||
CanonicalizeHostname always
|
||||
|
||||
Host *
|
||||
controlmaster auto
|
||||
controlpath /tmp/ssh-%r@%h:%p
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -29,20 +29,6 @@ in {
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
|
||||
programs.ssh = {
|
||||
startAgent = true;
|
||||
agentTimeout = "100m";
|
||||
extraConfig = ''
|
||||
VerifyHostKeyDNS yes
|
||||
AddKeysToAgent confirm 90m
|
||||
CanonicalizeHostname always
|
||||
|
||||
Host *
|
||||
controlmaster auto
|
||||
controlpath /tmp/ssh-%r@%h:%p
|
||||
'';
|
||||
};
|
||||
|
||||
environment.systemPackages =
|
||||
if isUnstable then [ pkgs.yash pkgs.go ] else [ pkgs.go ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user