nix-home-manager-config/programs/ssh.nix

7 lines
135 B
Nix
Raw Permalink Normal View History

2021-06-27 22:49:48 +02:00
{ services, ... }: {
programs.ssh = {
proxyCommand = if(services.tor.torsocks.enable == true)
then "torsocks"
else null;
};
}