Enable ssh_askpass on workstations
This commit is contained in:
parent
4f30e7d875
commit
f7927f6510
2 changed files with 10 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
./desktop.nix
|
./desktop.nix
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
./wireshark.nix
|
./wireshark.nix
|
||||||
|
./ssh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config =
|
config =
|
||||||
|
|
9
modules/workstation/ssh.nix
Normal file
9
modules/workstation/ssh.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
programs.ssh = {
|
||||||
|
startAgent = true;
|
||||||
|
enableAskPassword = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.variables.SSH_ASKPASS_REQUIRE = "never";
|
||||||
|
}
|
Loading…
Reference in a new issue